diff options
author | zhangguanzhang <zhangguanzhang@qq.com> | 2020-07-16 23:22:22 +0800 |
---|---|---|
committer | Matthew Heon <matthew.heon@pm.me> | 2020-07-22 13:29:59 -0400 |
commit | 092ff38129cd31badda0ed8801a89f3c032fa08b (patch) | |
tree | b16e5f0db83c91d6146414390f739efb5b61a381 /pkg/domain/infra/abi | |
parent | cb603b8a3e4a4a1da194ed020caf270fa85f6f5b (diff) | |
download | podman-092ff38129cd31badda0ed8801a89f3c032fa08b.tar.gz podman-092ff38129cd31badda0ed8801a89f3c032fa08b.tar.bz2 podman-092ff38129cd31badda0ed8801a89f3c032fa08b.zip |
fix play kube doesn't override dockerfile ENTRYPOINT
Signed-off-by: zhangguanzhang <zhangguanzhang@qq.com>
Diffstat (limited to 'pkg/domain/infra/abi')
-rw-r--r-- | pkg/domain/infra/abi/play.go | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/pkg/domain/infra/abi/play.go b/pkg/domain/infra/abi/play.go index f82da2c95..888811958 100644 --- a/pkg/domain/infra/abi/play.go +++ b/pkg/domain/infra/abi/play.go @@ -453,11 +453,16 @@ func kubeContainerToCreateConfig(ctx context.Context, containerYAML v1.Container containerConfig.Command = []string{} if imageData != nil && imageData.Config != nil { - containerConfig.Command = append(containerConfig.Command, imageData.Config.Entrypoint...) + containerConfig.Command = imageData.Config.Entrypoint } if len(containerYAML.Command) != 0 { - containerConfig.Command = append(containerConfig.Command, containerYAML.Command...) - } else if imageData != nil && imageData.Config != nil { + containerConfig.Command = containerYAML.Command + } + // doc https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#notes + if len(containerYAML.Args) != 0 { + containerConfig.Command = append(containerConfig.Command, containerYAML.Args...) + } else if len(containerYAML.Command) == 0 { + // Add the Cmd from the image config only if containerYAML.Command and containerYAML.Args are empty containerConfig.Command = append(containerConfig.Command, imageData.Config.Cmd...) } if imageData != nil && len(containerConfig.Command) == 0 { |