From 1c66d027a349e20c5207ec96ad58f21ee5f4380e Mon Sep 17 00:00:00 2001 From: Winicius Silva Date: Fri, 5 Apr 2024 13:47:12 -0300 Subject: [PATCH] Change the default ceph_nova_user in globals The documentation[1] says that ceph_nova_user is the same as ceph_cinder_user, but this it not true. In globals, the variable which refer to nova user on ceph its setted as just "nova", instead of {{ ceph_cinder_user }} [1] https://docs.openstack.org/kolla-ansible/latest/reference/storage/external-ceph-guide.html Closes-Bug: #1954910 Change-Id: I0037b294fa88f129aaa98da426989a8151e6f9ea (cherry picked from commit 21c05dcf101105b62f1b81620305438ae3d3d8b8) --- etc/kolla/globals.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/kolla/globals.yml b/etc/kolla/globals.yml index 7a38727934..3adc7448cf 100644 --- a/etc/kolla/globals.yml +++ b/etc/kolla/globals.yml @@ -463,7 +463,7 @@ workaround_ansible_issue_8743: yes #ceph_cinder_backup_pool_name: "backups" # Nova #ceph_nova_keyring: "{{ ceph_cinder_keyring }}" -#ceph_nova_user: "nova" +#ceph_nova_user: "{{ ceph_cinder_user }}" #ceph_nova_pool_name: "vms" # Gnocchi #ceph_gnocchi_keyring: "ceph.client.gnocchi.keyring"