From: Teoman ONAY Date: Wed, 15 Jan 2025 13:30:21 +0000 (+0100) Subject: rolling_update: fails on FSMap sanity check when containerized X-Git-Tag: v6.0.28.16 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=cf2f4b92eedd9e5c1c9d61e3543955d1817c6fb4;p=ceph-ansible.git rolling_update: fails on FSMap sanity check when containerized Fixes missing environment variables Signed-off-by: Teoman ONAY --- diff --git a/infrastructure-playbooks/rolling_update.yml b/infrastructure-playbooks/rolling_update.yml index e90d048cd..c29ef338e 100644 --- a/infrastructure-playbooks/rolling_update.yml +++ b/infrastructure-playbooks/rolling_update.yml @@ -156,6 +156,9 @@ who: mon option: mon_mds_skip_sanity value: true + environment: + CEPH_CONTAINER_IMAGE: "{{ ceph_docker_registry + '/' + ceph_docker_image + ':' + ceph_docker_image_tag if containerized_deployment | bool else None }}" + CEPH_CONTAINER_BINARY: "{{ container_binary }}" - name: upgrade ceph mon cluster block: @@ -1215,6 +1218,9 @@ action: rm who: mon option: mon_mds_skip_sanity + environment: + CEPH_CONTAINER_IMAGE: "{{ ceph_docker_registry + '/' + ceph_docker_image + ':' + ceph_docker_image_tag if containerized_deployment | bool else None }}" + CEPH_CONTAINER_BINARY: "{{ container_binary }}" - name: show ceph status hosts: "{{ mon_group_name|default('mons') }}"