diff --git a/cmd/executor/cmd/root.go b/cmd/executor/cmd/root.go index ecfc986b88..856b4cdb78 100644 --- a/cmd/executor/cmd/root.go +++ b/cmd/executor/cmd/root.go @@ -85,7 +85,7 @@ func addKanikoOptionsFlags(cmd *cobra.Command) { RootCmd.PersistentFlags().VarP(&opts.Destinations, "destination", "d", "Registry the final image should be pushed to. Set it repeatedly for multiple destinations.") RootCmd.PersistentFlags().StringVarP(&opts.SnapshotMode, "snapshotMode", "", "full", "Change the file attributes inspected during snapshotting") RootCmd.PersistentFlags().VarP(&opts.BuildArgs, "build-arg", "", "This flag allows you to pass in ARG values at build time. Set it repeatedly for multiple values.") - RootCmd.PersistentFlags().BoolVarP(&opts.DockerInsecure, "insecure", "", false, "Push to insecure registry using plain HTTP") + RootCmd.PersistentFlags().BoolVarP(&opts.InsecurePush, "insecure", "", false, "Push to insecure registry using plain HTTP") RootCmd.PersistentFlags().BoolVarP(&opts.SkipTlsVerify, "skip-tls-verify", "", false, "Push to insecure registry ignoring TLS verify") RootCmd.PersistentFlags().StringVarP(&opts.TarPath, "tarPath", "", "", "Path to save the image in as a tarball instead of pushing") RootCmd.PersistentFlags().BoolVarP(&opts.SingleSnapshot, "single-snapshot", "", false, "Take a single snapshot at the end of the build.") diff --git a/pkg/executor/push.go b/pkg/executor/push.go index 19147a4f4d..4b0810ae4d 100644 --- a/pkg/executor/push.go +++ b/pkg/executor/push.go @@ -67,7 +67,7 @@ func DoPush(image v1.Image, opts *options.KanikoOptions) error { // continue pushing unless an error occurs for _, destRef := range destRefs { - if opts.DockerInsecure { + if opts.InsecurePush { newReg, err := name.NewInsecureRegistry(destRef.Repository.Registry.Name(), name.WeakValidation) if err != nil { return errors.Wrap(err, "getting new insecure registry") diff --git a/pkg/options/options.go b/pkg/options/options.go index bffd9c9640..dbbea2afba 100644 --- a/pkg/options/options.go +++ b/pkg/options/options.go @@ -23,7 +23,7 @@ type KanikoOptions struct { SrcContext string SnapshotMode string Bucket string - DockerInsecure bool + InsecurePush bool SkipTlsVerify bool BuildArgs multiArg TarPath string