diff --git a/cmd/helm/init.go b/cmd/helm/init.go index bf7d38f16..d07010c5b 100644 --- a/cmd/helm/init.go +++ b/cmd/helm/init.go @@ -100,12 +100,6 @@ func newInitCmd(out io.Writer) *cobra.Command { f.BoolVarP(&i.clientOnly, "client-only", "c", false, "if set does not install tiller") f.BoolVar(&i.dryRun, "dry-run", false, "do not install local or remote") - // f.BoolVar(&tlsEnable, "tiller-tls", false, "install tiller with TLS enabled") - // f.BoolVar(&tlsVerify, "tiller-tls-verify", false, "install tiller with TLS enabled and to verify remote certificates") - // f.StringVar(&tlsKeyFile, "tiller-tls-key", "", "path to TLS key file to install with tiller") - // f.StringVar(&tlsCertFile, "tiller-tls-cert", "", "path to TLS certificate file to install with tiller") - // f.StringVar(&tlsCaCertFile, "tls-ca-cert", "", "path to CA root certificate") - return cmd }