Skip to content

Commit a35363c

Browse files
committed
Fully qualify seed container images
Seed hosts configured to use the Podman container engine do not automatically resolve image short-names to docker.io like seed hosts using the Docker container engine. Fully qualify seed container images so that Podman does not fail to resolve them out of the box.
1 parent a8e8a01 commit a35363c

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

etc/kayobe/seed.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ seed_pulp_container_enabled: true
102102

103103
seed_pulp_container:
104104
pulp:
105-
image: pulp/pulp
105+
image: quay.io/pulp/pulp
106106
pre: "{{ kayobe_config_path }}/containers/pulp/pre.yml"
107107
post: "{{ kayobe_config_path }}/containers/pulp/post.yml"
108108
tag: "3.81.0"
@@ -127,7 +127,7 @@ seed_squid_container_enabled: false
127127

128128
seed_squid_container:
129129
squid:
130-
image: stackhpc/squid
130+
image: docker.io/stackhpc/squid
131131
pre: "{{ kayobe_config_path }}/containers/squid_proxy/pre.yml"
132132
tag: "4.15"
133133
network_mode: host
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
fixes:
3+
- |
4+
Ensure that seed hosts using Podman pull seed container
5+
images using their fully-qualified name, rather than
6+
their short-name.

0 commit comments

Comments
 (0)