From 81d1f9257406a8a6aa6302a71eb5a30ca5ed4d75 Mon Sep 17 00:00:00 2001 From: stackhpc-ci <22933334+stackhpc-ci@users.noreply.github.com> Date: Tue, 5 Aug 2025 00:16:18 +0000 Subject: [PATCH 1/4] Bump kayobe to stackhpc/16.7.0.5 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 7dff7eb68d..1f79aea5d6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ -kayobe@git+https://github.com/stackhpc/kayobe@stackhpc/16.7.0.4 +kayobe@git+https://github.com/stackhpc/kayobe@stackhpc/16.7.0.5 ansible-modules-hashivault>=5.2.1 jmespath From 993be2938d2775489660eafee7ea441f3678629b Mon Sep 17 00:00:00 2001 From: stackhpc-ci <22933334+stackhpc-ci@users.noreply.github.com> Date: Tue, 5 Aug 2025 00:16:24 +0000 Subject: [PATCH 2/4] Bump kolla to stackhpc/18.7.0.9 --- etc/kayobe/stackhpc.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/kayobe/stackhpc.yml b/etc/kayobe/stackhpc.yml index a218edef86..134f570fde 100644 --- a/etc/kayobe/stackhpc.yml +++ b/etc/kayobe/stackhpc.yml @@ -165,7 +165,7 @@ stackhpc_repo_elrepo_9_version: "{{ stackhpc_repo_distribution }}" # Kolla source repository. stackhpc_kolla_source_url: "https://github.com/stackhpc/kolla" -stackhpc_kolla_source_version: stackhpc/18.7.0.8 +stackhpc_kolla_source_version: stackhpc/18.7.0.9 # Kolla Ansible source repository. stackhpc_kolla_ansible_source_url: "https://github.com/stackhpc/kolla-ansible" From 974cd4b625a11516ff2d48ead2d30cd747e5ab1d Mon Sep 17 00:00:00 2001 From: stackhpc-ci <22933334+stackhpc-ci@users.noreply.github.com> Date: Tue, 5 Aug 2025 00:16:19 +0000 Subject: [PATCH 3/4] Bump kolla-ansible to stackhpc/18.7.0.10 --- etc/kayobe/stackhpc.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/kayobe/stackhpc.yml b/etc/kayobe/stackhpc.yml index 134f570fde..289b4e1eb1 100644 --- a/etc/kayobe/stackhpc.yml +++ b/etc/kayobe/stackhpc.yml @@ -169,7 +169,7 @@ stackhpc_kolla_source_version: stackhpc/18.7.0.9 # Kolla Ansible source repository. stackhpc_kolla_ansible_source_url: "https://github.com/stackhpc/kolla-ansible" -stackhpc_kolla_ansible_source_version: stackhpc/18.7.0.7 +stackhpc_kolla_ansible_source_version: stackhpc/18.7.0.10 ############################################################################### # Container image registry From 0c191dd7d5e4904efe43c333158ab67b0064c352 Mon Sep 17 00:00:00 2001 From: Alex-Welsh Date: Wed, 30 Jul 2025 09:25:44 +0100 Subject: [PATCH 4/4] Fix linter errors --- .../ansible/roles/pulp_auth_proxy/tasks/main.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/etc/kayobe/ansible/roles/pulp_auth_proxy/tasks/main.yml b/etc/kayobe/ansible/roles/pulp_auth_proxy/tasks/main.yml index 6cbe55e5e2..66550b8948 100644 --- a/etc/kayobe/ansible/roles/pulp_auth_proxy/tasks/main.yml +++ b/etc/kayobe/ansible/roles/pulp_auth_proxy/tasks/main.yml @@ -5,11 +5,11 @@ - name: Check if Docker bridge network exists community.docker.docker_host_info: networks: true - register: docker_host_info + register: pulp_auth_proxy_docker_host_info - name: Set a fact about the network mode ansible.builtin.set_fact: - pulp_auth_proxy_network_mode: "{{ 'host' if docker_host_info.networks | selectattr('Driver', 'equalto', 'bridge') | list | length == 0 else 'bridge' }}" + pulp_auth_proxy_network_mode: "{{ 'host' if pulp_auth_proxy_docker_host_info.networks | selectattr('Driver', 'equalto', 'bridge') | list | length == 0 else 'bridge' }}" - name: Assert that localhost is resolvable when using host networking ansible.builtin.assert: @@ -33,7 +33,7 @@ dest: "{{ pulp_auth_proxy_conf_path }}/pulp_proxy.conf" mode: "0600" become: true - register: pulp_proxy_conf + register: pulp_auth_proxy_conf - name: Ensure pulp_proxy container is running community.docker.docker_container: @@ -43,14 +43,14 @@ ports: - "{{ pulp_auth_proxy_listen_ip }}:{{ pulp_auth_proxy_listen_port }}:80" restart_policy: "no" - restart: "{{ pulp_proxy_conf is changed }}" + restart: "{{ pulp_auth_proxy_conf is changed }}" volumes: - "{{ pulp_auth_proxy_conf_path }}/pulp_proxy.conf:/etc/nginx/conf.d/default.conf:ro" - name: Wait for pulp_proxy container to become accessible ansible.builtin.uri: url: http://localhost/pulp/api/v3/status/ - register: uri_result - until: uri_result is success + register: pulp_auth_proxy_uri_result + until: pulp_auth_proxy_uri_result is success retries: 30 delay: 2