summaryrefslogtreecommitdiff
path: root/pkg/domain
diff options
context:
space:
mode:
authorValentin Rothberg <rothberg@redhat.com>2021-07-26 10:28:45 +0200
committerValentin Rothberg <rothberg@redhat.com>2021-07-26 10:28:45 +0200
commitc197d19fe8890226f9fe416ece6fa4cbbb7f8108 (patch)
tree0758da1c7db8992ccf5be83c7d98cd91d26e72cb /pkg/domain
parentec5c7c1f6a1898dacddb6cc35802525c288b61ef (diff)
downloadpodman-c197d19fe8890226f9fe416ece6fa4cbbb7f8108.tar.gz
podman-c197d19fe8890226f9fe416ece6fa4cbbb7f8108.tar.bz2
podman-c197d19fe8890226f9fe416ece6fa4cbbb7f8108.zip
play kube: support capitalized pull policy
Pull policies in K8s yaml may be capitalized, so lower them before parsing. Fixes: bugzilla.redhat.com/show_bug.cgi?id=1985905 Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'pkg/domain')
-rw-r--r--pkg/domain/infra/abi/play.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkg/domain/infra/abi/play.go b/pkg/domain/infra/abi/play.go
index 4782f0d01..d257bad18 100644
--- a/pkg/domain/infra/abi/play.go
+++ b/pkg/domain/infra/abi/play.go
@@ -277,7 +277,10 @@ func (ic *ContainerEngine) playKubePod(ctx context.Context, podName string, podY
// registry on localhost.
pullPolicy := config.PullPolicyNewer
if len(container.ImagePullPolicy) > 0 {
- pullPolicy, err = config.ParsePullPolicy(string(container.ImagePullPolicy))
+ // Make sure to lower the strings since K8s pull policy
+ // may be capitalized (see bugzilla.redhat.com/show_bug.cgi?id=1985905).
+ rawPolicy := string(container.ImagePullPolicy)
+ pullPolicy, err = config.ParsePullPolicy(strings.ToLower(rawPolicy))
if err != nil {
return nil, err
}