Skip to content
This repository was archived by the owner on Oct 13, 2023. It is now read-only.

Commit 7b094d6

Browse files
Merge pull request #2292 from thaJeztah/19.03_backport_hide_unsupported_buildkit_flags
[19.03 backport] Annotate flags that are not supported by Buildkit Upstream-commit: 696605c99bd2f311ad2daf8b08369c7b43e9d53b Component: cli
2 parents 3a0d01d + 45171da commit 7b094d6

1 file changed

Lines changed: 13 additions & 1 deletion

File tree

  • components/cli/cli/command/image

components/cli/cli/command/image/build.go

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,28 +120,40 @@ func NewBuildCommand(dockerCli command.Cli) *cobra.Command {
120120
flags.VarP(&options.tags, "tag", "t", "Name and optionally a tag in the 'name:tag' format")
121121
flags.Var(&options.buildArgs, "build-arg", "Set build-time variables")
122122
flags.Var(options.ulimits, "ulimit", "Ulimit options")
123+
flags.SetAnnotation("ulimit", "no-buildkit", nil)
123124
flags.StringVarP(&options.dockerfileName, "file", "f", "", "Name of the Dockerfile (Default is 'PATH/Dockerfile')")
124125
flags.VarP(&options.memory, "memory", "m", "Memory limit")
126+
flags.SetAnnotation("memory", "no-buildkit", nil)
125127
flags.Var(&options.memorySwap, "memory-swap", "Swap limit equal to memory plus swap: '-1' to enable unlimited swap")
128+
flags.SetAnnotation("memory-swap", "no-buildkit", nil)
126129
flags.Var(&options.shmSize, "shm-size", "Size of /dev/shm")
130+
flags.SetAnnotation("shm-size", "no-buildkit", nil)
127131
flags.Int64VarP(&options.cpuShares, "cpu-shares", "c", 0, "CPU shares (relative weight)")
132+
flags.SetAnnotation("cpu-shares", "no-buildkit", nil)
128133
flags.Int64Var(&options.cpuPeriod, "cpu-period", 0, "Limit the CPU CFS (Completely Fair Scheduler) period")
134+
flags.SetAnnotation("cpu-period", "no-buildkit", nil)
129135
flags.Int64Var(&options.cpuQuota, "cpu-quota", 0, "Limit the CPU CFS (Completely Fair Scheduler) quota")
136+
flags.SetAnnotation("cpu-quota", "no-buildkit", nil)
130137
flags.StringVar(&options.cpuSetCpus, "cpuset-cpus", "", "CPUs in which to allow execution (0-3, 0,1)")
138+
flags.SetAnnotation("cpuset-cpus", "no-buildkit", nil)
131139
flags.StringVar(&options.cpuSetMems, "cpuset-mems", "", "MEMs in which to allow execution (0-3, 0,1)")
140+
flags.SetAnnotation("cpuset-mems", "no-buildkit", nil)
132141
flags.StringVar(&options.cgroupParent, "cgroup-parent", "", "Optional parent cgroup for the container")
142+
flags.SetAnnotation("cgroup-parent", "no-buildkit", nil)
133143
flags.StringVar(&options.isolation, "isolation", "", "Container isolation technology")
134144
flags.Var(&options.labels, "label", "Set metadata for an image")
135145
flags.BoolVar(&options.noCache, "no-cache", false, "Do not use cache when building the image")
136146
flags.BoolVar(&options.rm, "rm", true, "Remove intermediate containers after a successful build")
147+
flags.SetAnnotation("rm", "no-buildkit", nil)
137148
flags.BoolVar(&options.forceRm, "force-rm", false, "Always remove intermediate containers")
149+
flags.SetAnnotation("force-rm", "no-buildkit", nil)
138150
flags.BoolVarP(&options.quiet, "quiet", "q", false, "Suppress the build output and print image ID on success")
139151
flags.BoolVar(&options.pull, "pull", false, "Always attempt to pull a newer version of the image")
140152
flags.StringSliceVar(&options.cacheFrom, "cache-from", []string{}, "Images to consider as cache sources")
141153
flags.BoolVar(&options.compress, "compress", false, "Compress the build context using gzip")
142154
flags.SetAnnotation("compress", "no-buildkit", nil)
143-
144155
flags.StringSliceVar(&options.securityOpt, "security-opt", []string{}, "Security options")
156+
flags.SetAnnotation("security-opt", "no-buildkit", nil)
145157
flags.StringVar(&options.networkMode, "network", "default", "Set the networking mode for the RUN instructions during build")
146158
flags.SetAnnotation("network", "version", []string{"1.25"})
147159
flags.Var(&options.extraHosts, "add-host", "Add a custom host-to-IP mapping (host:ip)")

0 commit comments

Comments
 (0)