From 8184ba300a701da320187e79d706c4d1de009e89 Mon Sep 17 00:00:00 2001 From: Francesco Pantano Date: Thu, 18 Aug 2022 15:03:52 +0200 Subject: [PATCH] Update CEPH_NAMESPACE and rely on the "release" variable Now that master is on Quincy but Wallaby is still on Pacific, we need to make sure the container namespace is the right one. This patch removes the hardcoded master container namespace and fetch it according to the openstack branch. Note that centos9 can be hardcoded because we test both releases on c9. Change-Id: I7db138fd012e264e87009c524eee02448e793ddf --- roles/standalone/tasks/ceph-install.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/standalone/tasks/ceph-install.yml b/roles/standalone/tasks/ceph-install.yml index 25b4b8c20..972bf9d19 100644 --- a/roles/standalone/tasks/ceph-install.yml +++ b/roles/standalone/tasks/ceph-install.yml @@ -136,4 +136,4 @@ tripleo_ceph_deploy_generate_scripts: true tripleo_ceph_deploy_network_data: "{{ network_data }}" tripleo_ceph_deploy_cluster_network_name: storage - tripleo_ceph_deploy_container_namespace: "{{ (standalone_container_ceph_updates|bool) | ternary(docker_ceph_namespace, 'quay.rdoproject.org/tripleomastercentos9') }}" + tripleo_ceph_deploy_container_namespace: "{{ (standalone_container_ceph_updates|bool) | ternary(docker_ceph_namespace, 'quay.rdoproject.org/tripleo{{ release }}centos9') }}"