diff options
author | Valentin Rothberg <rothberg@redhat.com> | 2020-03-27 10:32:04 +0100 |
---|---|---|
committer | Valentin Rothberg <rothberg@redhat.com> | 2020-03-27 10:32:04 +0100 |
commit | 2c4ac55c819a2b155185a5ba45207e560519bbe2 (patch) | |
tree | 70d28d042ca0d7ceb3dd76b8e49a7994f6449ce4 /libpod/define | |
parent | 1710eca4e930f7ed3a2b060029c627c1a66a2349 (diff) | |
download | podman-2c4ac55c819a2b155185a5ba45207e560519bbe2.tar.gz podman-2c4ac55c819a2b155185a5ba45207e560519bbe2.tar.bz2 podman-2c4ac55c819a2b155185a5ba45207e560519bbe2.zip |
use `pause:3.2` image for infra containers
The `pause:3.1` has wrong configs for non-amd64 images as they all claim
to be for amd64. The issue has now been fixed in the latest
`pause:3.2`.
[1] https://github.com/kubernetes/kubernetes/issues/87325
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'libpod/define')
-rw-r--r-- | libpod/define/config.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/define/config.go b/libpod/define/config.go index 8bd59be75..c06c32471 100644 --- a/libpod/define/config.go +++ b/libpod/define/config.go @@ -4,7 +4,7 @@ var ( // DefaultInitPath is the default path to the container-init binary DefaultInitPath = "/usr/libexec/podman/catatonit" // DefaultInfraImage to use for infra container - DefaultInfraImage = "k8s.gcr.io/pause:3.1" + DefaultInfraImage = "k8s.gcr.io/pause:3.2" // DefaultInfraCommand to be run in an infra container DefaultInfraCommand = "/pause" // DefaultSHMLockPath is the default path for SHM locks |