mirror of https://github.com/docker/cli.git
Fix docs YAML generation setting "kubernetes" for "swarm"
Due to a copy/paste error, commands annotated with "swarm" were incorrectly setting the "kubernetes" property. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
4c7749e523
commit
6be06a3db2
|
@ -123,7 +123,7 @@ func GenYamlCustom(cmd *cobra.Command, w io.Writer) error {
|
||||||
cliDoc.Kubernetes = true
|
cliDoc.Kubernetes = true
|
||||||
}
|
}
|
||||||
if _, ok := curr.Annotations["swarm"]; ok && !cliDoc.Swarm {
|
if _, ok := curr.Annotations["swarm"]; ok && !cliDoc.Swarm {
|
||||||
cliDoc.Kubernetes = true
|
cliDoc.Swarm = true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -208,7 +208,7 @@ func genFlagResult(flags *pflag.FlagSet) []cmdOption {
|
||||||
opt.Kubernetes = true
|
opt.Kubernetes = true
|
||||||
}
|
}
|
||||||
if _, ok := flag.Annotations["swarm"]; ok {
|
if _, ok := flag.Annotations["swarm"]; ok {
|
||||||
opt.Kubernetes = true
|
opt.Swarm = true
|
||||||
}
|
}
|
||||||
|
|
||||||
result = append(result, opt)
|
result = append(result, opt)
|
||||||
|
|
Loading…
Reference in New Issue