From 326b29f363596e6b63ebdf2643d22b2b642aecea Mon Sep 17 00:00:00 2001 From: Vladislav Belogrudov Date: Fri, 4 Sep 2015 14:44:41 +0300 Subject: [PATCH] Set cinder auth_strategy to keystone explicitely Default value for auth_strategy changed for Cinder in Liberty release from 'noauth' to 'keystone'. Therefore relying on default value makes Cinder fail in Kilo. This patch covers both releases by setting auth strategy to 'keystone' explicitely Change-Id: Ic1f45fd43e0a94ca1dbfc63e90e2756c40453352 Closes-Bug: #1492233 --- ansible/roles/cinder/templates/cinder.conf.j2 | 1 + 1 file changed, 1 insertion(+) diff --git a/ansible/roles/cinder/templates/cinder.conf.j2 b/ansible/roles/cinder/templates/cinder.conf.j2 index 81b1a4eb8d..305270fed9 100644 --- a/ansible/roles/cinder/templates/cinder.conf.j2 +++ b/ansible/roles/cinder/templates/cinder.conf.j2 @@ -16,6 +16,7 @@ osapi_volume_listen = {{ hostvars[inventory_hostname]['ansible_' + api_interface osapi_volume_listen_port = {{ cinder_api_port }} api_paste_config = /etc/cinder/api-paste.ini nova_catalog_info = compute:nova:internalURL +auth_strategy = keystone [database] connection = mysql://{{ cinder_database_user }}:{{ cinder_database_password }}@{{ cinder_database_address }}/{{ cinder_database_name }}