]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
rolling_update: fails on FSMap sanity check when containerized v6.0.28.16
authorTeoman ONAY <tonay@ibm.com>
Wed, 15 Jan 2025 13:30:21 +0000 (14:30 +0100)
committerTeoman ONAY <tonay@ibm.com>
Mon, 20 Jan 2025 09:50:15 +0000 (10:50 +0100)
Fixes missing environment variables

Signed-off-by: Teoman ONAY <tonay@ibm.com>
infrastructure-playbooks/rolling_update.yml

index e90d048cd0d421041613aa64e8dfc2250749b345..c29ef338e1dab13f4d6a9f9674ef45b492dc89c0 100644 (file)
         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:
         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') }}"