From 442c0bc3ac0133b8ef82da2d86d33734692fb49a Mon Sep 17 00:00:00 2001 From: Juan Badia Payno Date: Mon, 11 Oct 2021 19:53:09 +0200 Subject: [PATCH] bnr fix the exportation of the ceph authentication The file ceph authetication is not being generated due to an undefined variable. This patch inserts the tasks that saves the content of the file in to the block, so the variables are defined. Change-Id: Id0c841723da00096e379133429a685bffaf407d3 --- .../tasks/ceph_authentication.yml | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/tripleo_ansible/roles/backup_and_restore/tasks/ceph_authentication.yml b/tripleo_ansible/roles/backup_and_restore/tasks/ceph_authentication.yml index 0a457d9ee..0b32f20a8 100644 --- a/tripleo_ansible/roles/backup_and_restore/tasks/ceph_authentication.yml +++ b/tripleo_ansible/roles/backup_and_restore/tasks/ceph_authentication.yml @@ -64,6 +64,12 @@ {{ tripleo_container_cli }} exec ceph-mon-{{ inventory_hostname }} bash -c "ceph auth export" register: bar_ceph_authentication_content + - name: Save ceph authentication at {{ tripleo_backup_and_restore_ceph_auth_file }} + copy: + dest: "{{ tripleo_backup_and_restore_ceph_auth_file }}" + content: | + {{ bar_ceph_authentication_content.stdout }} + - name: Ceph installed with cephadm when: - cephadm_ls.stdout is defined @@ -74,8 +80,8 @@ command: cephadm shell -- ceph auth export register: bar_ceph_authentication_content -- name: Save ceph authentication at {{ tripleo_backup_and_restore_ceph_auth_file }} - copy: - dest: "{{ tripleo_backup_and_restore_ceph_auth_file }}" - content: | - {{ bar_ceph_authentication_content.stdout }} + - name: Save ceph authentication at {{ tripleo_backup_and_restore_ceph_auth_file }} + copy: + dest: "{{ tripleo_backup_and_restore_ceph_auth_file }}" + content: | + {{ bar_ceph_authentication_content.stdout }}