diff --git a/cmd/mindthegap/push/helmbundle/helm_bundle.go b/cmd/mindthegap/push/helmbundle/helm_bundle.go index e36a4e20..24981c1e 100644 --- a/cmd/mindthegap/push/helmbundle/helm_bundle.go +++ b/cmd/mindthegap/push/helmbundle/helm_bundle.go @@ -126,7 +126,7 @@ func NewCommand(out output.Output) *cobra.Command { cmd.Flags().StringVar(&destRegistry, "to-registry", "", "Registry to push images to") _ = cmd.MarkFlagRequired("to-registry") cmd.Flags().BoolVar(&destRegistrySkipTLSVerify, "to-registry-insecure-skip-tls-verify", false, - "Skip TLS verification of registry to push images to (use for http registries)") + "Skip TLS verification of registry to push images to (also use for non-TLS http registries)") cmd.Flags().StringVar(&destRegistryUsername, "to-registry-username", "", "Username to use to log in to destination repository") cmd.Flags().StringVar(&destRegistryPassword, "to-registry-password", "", diff --git a/cmd/mindthegap/push/imagebundle/image_bundle.go b/cmd/mindthegap/push/imagebundle/image_bundle.go index 111133a9..feedd381 100644 --- a/cmd/mindthegap/push/imagebundle/image_bundle.go +++ b/cmd/mindthegap/push/imagebundle/image_bundle.go @@ -130,9 +130,9 @@ func NewCommand(out output.Output) *cobra.Command { cmd.Flags().StringVar(&destRegistry, "to-registry", "", "Registry to push images to") _ = cmd.MarkFlagRequired("to-registry") cmd.Flags().StringVar(&destRegistryCACertificateFile, "to-registry-ca-cert-file", "", - "CA certificate file used to verify TLS verification of registry to push images to (use for http registries)") + "CA certificate file used to verify TLS verification of registry to push images to") cmd.Flags().BoolVar(&destRegistrySkipTLSVerify, "to-registry-insecure-skip-tls-verify", false, - "Skip TLS verification of registry to push images to (use for non-TLS http registries)") + "Skip TLS verification of registry to push images to (also use for non-TLS http registries)") cmd.MarkFlagsMutuallyExclusive( "to-registry-ca-cert-file", "to-registry-insecure-skip-tls-verify", diff --git a/cmd/push/imagebundle/image_bundle.go b/cmd/push/imagebundle/image_bundle.go index d596b069..f140fcc2 100644 --- a/cmd/push/imagebundle/image_bundle.go +++ b/cmd/push/imagebundle/image_bundle.go @@ -136,7 +136,7 @@ func NewCommand(out output.Output) *cobra.Command { cmd.Flags().StringVar(&destRegistry, "to-registry", "", "Registry to push images to") _ = cmd.MarkFlagRequired("to-registry") cmd.Flags().BoolVar(&destRegistrySkipTLSVerify, "to-registry-insecure-skip-tls-verify", false, - "Skip TLS verification of registry to push images to (use for http registries)") + "Skip TLS verification of registry to push images to (also use for non-TLS http registries)") cmd.Flags().StringVar(&destRegistryUsername, "to-registry-username", "", "Username to use to log in to destination registry") cmd.Flags().StringVar(&destRegistryPassword, "to-registry-password", "",