mirror of
https://github.com/containers/podman.git
synced 2025-11-28 09:09:44 +08:00
fix remote command parameters
Signed-off-by: Oleksandr Krutko <alexander.krutko@gmail.com>
This commit is contained in:
@@ -176,6 +176,9 @@ func playFlags(cmd *cobra.Command) {
|
||||
flags.BoolVar(&playOptions.UseLongAnnotations, noTruncFlagName, false, "Use annotations that are not truncated to the Kubernetes maximum length of 63 characters")
|
||||
_ = flags.MarkHidden(noTruncFlagName)
|
||||
|
||||
noPodPrefix := "no-pod-prefix"
|
||||
flags.BoolVar(&playOptions.NoPodPrefix, noPodPrefix, false, "Do not prefix container name with pod name")
|
||||
|
||||
if !registry.IsRemote() {
|
||||
certDirFlagName := "cert-dir"
|
||||
flags.StringVar(&playOptions.CertDir, certDirFlagName, "", "`Pathname` of a directory containing TLS certificates and keys")
|
||||
@@ -205,9 +208,6 @@ func playFlags(cmd *cobra.Command) {
|
||||
exitFlagName := "service-exit-code-propagation"
|
||||
flags.StringVar(&playOptions.ExitCodePropagation, exitFlagName, "", "Exit-code propagation of the service container")
|
||||
_ = flags.MarkHidden(exitFlagName)
|
||||
|
||||
noPodPrefix := "no-pod-prefix"
|
||||
flags.BoolVar(&playOptions.NoPodPrefix, noPodPrefix, false, "Don't use pod name as prefix in resulting container name.")
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -262,7 +262,7 @@ This option conflicts with host added in the Kubernetes YAML.
|
||||
|
||||
#### **--no-pod-prefix**
|
||||
|
||||
Don't use pod name as prefix in resulting container name.
|
||||
Do not prefix container name with pod name.
|
||||
|
||||
#### **--publish**=*[[ip:][hostPort]:]containerPort[/protocol]*
|
||||
|
||||
|
||||
@@ -123,6 +123,7 @@ func KubePlay(w http.ResponseWriter, r *http.Request) {
|
||||
Userns string `schema:"userns"`
|
||||
Wait bool `schema:"wait"`
|
||||
Build bool `schema:"build"`
|
||||
NoPodPrefix bool `schema:"noPodPrefix"`
|
||||
}{
|
||||
TLSVerify: true,
|
||||
Start: true,
|
||||
@@ -198,6 +199,7 @@ func KubePlay(w http.ResponseWriter, r *http.Request) {
|
||||
Userns: query.Userns,
|
||||
Wait: query.Wait,
|
||||
ContextDir: contextDirectory,
|
||||
NoPodPrefix: query.NoPodPrefix,
|
||||
}
|
||||
if _, found := r.URL.Query()["build"]; found {
|
||||
options.Build = types.NewOptionalBool(query.Build)
|
||||
|
||||
@@ -63,6 +63,7 @@ type PlayOptions struct {
|
||||
// Wait - indicates whether to return after having created the pods
|
||||
Wait *bool
|
||||
ServiceContainer *bool
|
||||
NoPodPrefix *bool
|
||||
}
|
||||
|
||||
// ApplyOptions are optional options for applying kube YAML files to a k8s cluster
|
||||
|
||||
@@ -407,3 +407,18 @@ func (o *PlayOptions) GetServiceContainer() bool {
|
||||
}
|
||||
return *o.ServiceContainer
|
||||
}
|
||||
|
||||
// WithNoPodPrefix set field NoPodPrefix to given value
|
||||
func (o *PlayOptions) WithNoPodPrefix(value bool) *PlayOptions {
|
||||
o.NoPodPrefix = &value
|
||||
return o
|
||||
}
|
||||
|
||||
// GetNoPodPrefix returns value of field NoPodPrefix
|
||||
func (o *PlayOptions) GetNoPodPrefix() bool {
|
||||
if o.NoPodPrefix == nil {
|
||||
var z bool
|
||||
return z
|
||||
}
|
||||
return *o.NoPodPrefix
|
||||
}
|
||||
|
||||
@@ -81,7 +81,7 @@ type PlayKubeOptions struct {
|
||||
Wait bool
|
||||
// SystemContext - used when building the image
|
||||
SystemContext *types.SystemContext
|
||||
// Don't use pod name as prefix in resulting container name.
|
||||
// Do not prefix container name with pod name
|
||||
NoPodPrefix bool
|
||||
}
|
||||
|
||||
|
||||
@@ -75,6 +75,7 @@ func (ic *ContainerEngine) PlayKube(_ context.Context, body io.Reader, opts enti
|
||||
options.WithPublishPorts(opts.PublishPorts)
|
||||
options.WithPublishAllPorts(opts.PublishAllPorts)
|
||||
options.WithNoTrunc(opts.UseLongAnnotations)
|
||||
options.WithNoPodPrefix(opts.NoPodPrefix)
|
||||
return play.KubeWithBody(ic.ClientCtx, body, options)
|
||||
}
|
||||
|
||||
|
||||
@@ -222,6 +222,19 @@ spec:
|
||||
- sleep
|
||||
- "3600"`
|
||||
|
||||
var simpleWithoutPodPrefixYaml = `
|
||||
apiVersion: v1
|
||||
kind: Pod
|
||||
metadata:
|
||||
name: libpod-test
|
||||
spec:
|
||||
containers:
|
||||
- name: simpleWithoutPodPrefix
|
||||
image: ` + CITEST_IMAGE + `
|
||||
command:
|
||||
- sleep
|
||||
- "3600"`
|
||||
|
||||
var unknownKindYaml = `
|
||||
apiVersion: v1
|
||||
kind: UnknownKind
|
||||
@@ -6422,11 +6435,11 @@ spec:
|
||||
})
|
||||
|
||||
It("test container name without Pod name prefix", func() {
|
||||
err := writeYaml(podnameEqualsContainerNameYaml, kubeYaml)
|
||||
err := writeYaml(simpleWithoutPodPrefixYaml, kubeYaml)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
|
||||
podmanTest.PodmanExitCleanly("kube", "play", "--no-pod-prefix", kubeYaml)
|
||||
inspect := podmanTest.PodmanExitCleanly("inspect", "podnameEqualsContainerNameYaml")
|
||||
Expect(inspect.InspectContainerToJSON()[0].Name).Should(Equal("podnameEqualsContainerNameYaml"))
|
||||
inspect := podmanTest.PodmanExitCleanly("inspect", "simpleWithoutPodPrefix")
|
||||
Expect(inspect.InspectContainerToJSON()[0].Name).Should(Equal("simpleWithoutPodPrefix"))
|
||||
})
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user