carapace-bin/completers/kubeadm_completer/cmd/init_phase_certs_frontProxyClient.go
2025-04-25 18:29:51 +02:00

28 lines
1.1 KiB
Go

package cmd
import (
"github.com/carapace-sh/carapace"
"github.com/spf13/cobra"
)
var init_phase_certs_frontProxyClientCmd = &cobra.Command{
Use: "front-proxy-client",
Short: "Generate the certificate for the front proxy client",
Run: func(cmd *cobra.Command, args []string) {},
}
func init() {
carapace.Gen(init_phase_certs_frontProxyClientCmd).Standalone()
init_phase_certs_frontProxyClientCmd.Flags().String("cert-dir", "", "The path where to save and store the certificates.")
init_phase_certs_frontProxyClientCmd.Flags().String("config", "", "Path to a kubeadm configuration file.")
init_phase_certs_frontProxyClientCmd.Flags().Bool("dry-run", false, "Don't apply any changes; just output what would be done.")
init_phase_certs_frontProxyClientCmd.Flags().String("kubernetes-version", "", "Choose a specific Kubernetes version for the control plane.")
init_phase_certsCmd.AddCommand(init_phase_certs_frontProxyClientCmd)
carapace.Gen(init_phase_certs_frontProxyClientCmd).FlagCompletion(carapace.ActionMap{
"cert-dir": carapace.ActionDirectories(),
"config": carapace.ActionFiles(),
})
}