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

28 lines
1.2 KiB
Go

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