|
| 1 | +package cmd |
| 2 | + |
| 3 | +import ( |
| 4 | + "github.com/rsteube/carapace" |
| 5 | + "github.com/spf13/cobra" |
| 6 | +) |
| 7 | + |
| 8 | +var bootstrapCmd = &cobra.Command{ |
| 9 | + Use: "bootstrap", |
| 10 | + Short: "Bootstrap toolkit components", |
| 11 | + Run: func(cmd *cobra.Command, args []string) {}, |
| 12 | +} |
| 13 | + |
| 14 | +func init() { |
| 15 | + carapace.Gen(bootstrapCmd).Standalone() |
| 16 | + bootstrapCmd.PersistentFlags().String("arch", "", "cluster architecture, available options are: (amd64, arm, arm64)") |
| 17 | + bootstrapCmd.PersistentFlags().String("author-email", "", "author email for Git commits") |
| 18 | + bootstrapCmd.PersistentFlags().String("author-name", "Flux", "author name for Git commits") |
| 19 | + bootstrapCmd.PersistentFlags().String("branch", "main", "Git branch") |
| 20 | + bootstrapCmd.PersistentFlags().String("ca-file", "", "path to TLS CA file used for validating self-signed certificates") |
| 21 | + bootstrapCmd.PersistentFlags().String("cluster-domain", "cluster.local", "internal cluster domain") |
| 22 | + bootstrapCmd.PersistentFlags().String("commit-message-appendix", "", "string to add to the commit messages, e.g. '[ci skip]'") |
| 23 | + bootstrapCmd.PersistentFlags().StringSlice("components", []string{"source-controller", "kustomize-controller", "helm-controller", "notification-controller"}, "list of components, accepts comma-separated values") |
| 24 | + bootstrapCmd.PersistentFlags().StringSlice("components-extra", []string{}, "list of components in addition to those supplied or defaulted, accepts comma-separated values") |
| 25 | + bootstrapCmd.PersistentFlags().String("gpg-key-id", "", "key id for selecting a particular key") |
| 26 | + bootstrapCmd.PersistentFlags().String("gpg-key-ring", "", "path to GPG key ring for signing commits") |
| 27 | + bootstrapCmd.PersistentFlags().String("gpg-passphrase", "", "passphrase for decrypting GPG private key") |
| 28 | + bootstrapCmd.PersistentFlags().String("image-pull-secret", "", "Kubernetes secret name used for pulling the toolkit images from a private registry") |
| 29 | + bootstrapCmd.PersistentFlags().String("log-level", "info", "log level, available options are: (debug, info, error)") |
| 30 | + bootstrapCmd.PersistentFlags().String("manifests", "", "path to the manifest directory") |
| 31 | + bootstrapCmd.PersistentFlags().Bool("network-policy", true, "deny ingress access to the toolkit controllers from other namespaces using network policies") |
| 32 | + bootstrapCmd.PersistentFlags().String("private-key-file", "", "path to a private key file used for authenticating to the Git SSH server") |
| 33 | + bootstrapCmd.PersistentFlags().Bool("recurse-submodules", false, "when enabled, configures the GitRepository source to initialize and include Git submodules in the artifact it produces") |
| 34 | + bootstrapCmd.PersistentFlags().String("registry", "ghcr.io/fluxcd", "container registry where the toolkit images are published") |
| 35 | + bootstrapCmd.PersistentFlags().String("secret-name", "flux-system", "name of the secret the sync credentials can be found in or stored to") |
| 36 | + bootstrapCmd.PersistentFlags().String("ssh-ecdsa-curve", "", "SSH ECDSA public key curve (p256, p384, p521)") |
| 37 | + bootstrapCmd.PersistentFlags().String("ssh-hostname", "", "SSH hostname, to be used when the SSH host differs from the HTTPS one") |
| 38 | + bootstrapCmd.PersistentFlags().String("ssh-key-algorithm", "ecdsa", "SSH public key algorithm (rsa, ecdsa, ed25519)") |
| 39 | + bootstrapCmd.PersistentFlags().String("ssh-rsa-bits", "2048", "SSH RSA public key bit size (multiplies of 8)") |
| 40 | + bootstrapCmd.PersistentFlags().Bool("token-auth", false, "when enabled, the personal access token will be used instead of SSH deploy key") |
| 41 | + bootstrapCmd.PersistentFlags().StringSlice("toleration-keys", []string{}, "list of toleration keys used to schedule the components pods onto nodes with matching taints") |
| 42 | + bootstrapCmd.PersistentFlags().StringP("version", "v", "", "toolkit version, when specified the manifests are downloaded from https://github.com/fluxcd/flux2/releases") |
| 43 | + bootstrapCmd.PersistentFlags().Bool("watch-all-namespaces", true, "watch for custom resources in all namespaces, if set to false it will only watch the namespace where the toolkit is installed") |
| 44 | + rootCmd.AddCommand(bootstrapCmd) |
| 45 | +} |
0 commit comments