Use registry:2.7.0 instead of registry:2

htpasswd is removed in latest registry image[1]
and it's breaking molecule job for tripleo_podman
role, let's use working registry image.

[1] https://github.com/docker/distribution-library-image/issues/106
Change-Id: I644210a2dcc4cb3810d0999e8c69f8d54f602793
This commit is contained in:
yatinkarel 2020-07-07 18:03:26 +05:30 committed by yatin
parent ebb3f2ba40
commit 439671e770
1 changed files with 2 additions and 2 deletions

View File

@ -54,14 +54,14 @@
- name: Create registry - name: Create registry
shell: |- shell: |-
podman tag ubuntu:16.04 localhost:5000/my-ubuntu podman tag ubuntu:16.04 localhost:5000/my-ubuntu
podman run --entrypoint htpasswd registry:2 -Bbn testuser testpassword > {{ ansible_user_dir }}/auth/htpasswd podman run --entrypoint htpasswd registry:2.7.0 -Bbn testuser testpassword > {{ ansible_user_dir }}/auth/htpasswd
args: args:
executable: /bin/bash executable: /bin/bash
- name: Create registry - name: Create registry
podman_container: podman_container:
name: registry name: registry
image: "registry:2" image: "registry:2.7.0"
restart_policy: always restart_policy: always
detach: true detach: true
ports: ports: