Skip to content

Commit a76dc7e

Browse files
committed
CI: Fix check container image tags job for Ark
The stackhpc-dev container repositories on Ark are container-push repositories, so we must specify is_push=true. This requires stackhpc.pulp 0.5.5.
1 parent eafa278 commit a76dc7e

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

etc/kayobe/ansible/check-tags.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,6 @@
1616
set_fact:
1717
kolla_images: "{{ kolla_images_result.stdout | from_yaml }}"
1818

19-
- name: Set a fact about the Pulp URL
20-
set_fact:
21-
pulp_url: "{{ stackhpc_repo_mirror_url }}"
22-
2319
# Use state=read and allow_missing=false to check for missing tags in test pulp.
2420
- import_role:
2521
name: stackhpc.pulp.pulp_container_content
@@ -30,6 +26,7 @@
3026
{%- set repository = kolla_docker_namespace ~ "/" ~ image -%}
3127
{%- set content = {
3228
"allow_missing": False,
29+
"is_push": pulp_url == stackhpc_release_pulp_url,
3330
"repository": repository,
3431
"state": "read",
3532
"tags": tags,

etc/kayobe/ansible/requirements.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ collections:
77
- name: pulp.squeezer
88
version: 0.0.13
99
- name: stackhpc.pulp
10-
version: 0.5.4
10+
version: 0.5.5
1111
- name: stackhpc.hashicorp
1212
version: 2.4.0
1313
- name: stackhpc.kayobe_workflows

0 commit comments

Comments
 (0)