From 9dc95792dd99d72399308ddb6c23ab02373f41d9 Mon Sep 17 00:00:00 2001 From: Kevin Carter Date: Mon, 23 Nov 2015 14:35:16 -0600 Subject: [PATCH] Fixes playbook runtime issues with ldap When using an LDAP backend the plabooks fail when "ensuring.*" which is a keystone client action. The reason for the failure is related to how ldap backend, and is triggered when the service users are within the ldap and not SQL. To resolve the issue a boolean conditional was created on the various OS_.* roles to skip specific tasks when the service users have already been added into LDAP. Change-Id: I64a8d1e926c54b821f8bfb561a8b6f755bc1ed93 Closes-Bug: #1518351 Closes-Bug: #1519174 Signed-off-by: Kevin Carter --- defaults/main.yml | 2 ++ tasks/nova_service_add.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/defaults/main.yml b/defaults/main.yml index 44313d81..2bce931e 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -235,6 +235,8 @@ nova_ceph_client_uuid: 517a4663-3927-44bc-9ea7-4a90e1cd4c66 # "compute:create": "" # "compute:create:attach_network": "" +nova_service_in_ldap: false + ## libvirtd config options nova_libvirtd_listen_tls: 1 nova_libvirtd_listen_tcp: 0 diff --git a/tasks/nova_service_add.yml b/tasks/nova_service_add.yml index 13478fdc..60603fcf 100644 --- a/tasks/nova_service_add.yml +++ b/tasks/nova_service_add.yml @@ -43,6 +43,7 @@ password: "{{ service_password }}" insecure: "{{ keystone_service_adminuri_insecure }}" register: add_service + when: not nova_service_in_ldap | bool until: add_service|success retries: 5 delay: 10 @@ -62,6 +63,7 @@ role_name: "{{ role_name }}" insecure: "{{ keystone_service_adminuri_insecure }}" register: add_service + when: not nova_service_in_ldap | bool until: add_service|success retries: 5 delay: 10