Merge "Deprecate auth_plugin option"
This commit is contained in:
commit
35d3e242ec
@ -138,7 +138,8 @@ cinder_service_v3_internaluri: "{{ cinder_service_internaluri_proto }}://{{ inte
|
|||||||
cinder_service_v3_internalurl: "{{ cinder_service_internaluri }}/v3/%(tenant_id)s"
|
cinder_service_v3_internalurl: "{{ cinder_service_internaluri }}/v3/%(tenant_id)s"
|
||||||
|
|
||||||
## Keystone authentication middleware
|
## Keystone authentication middleware
|
||||||
cinder_keystone_auth_plugin: password
|
cinder_keystone_auth_plugin: "{{ cinder_keystone_auth_type }}"
|
||||||
|
cinder_keystone_auth_type: password
|
||||||
|
|
||||||
## In order to enable the cinder backup you MUST set ``cinder_service_backup_program_enabled`` to "true"
|
## In order to enable the cinder backup you MUST set ``cinder_service_backup_program_enabled`` to "true"
|
||||||
cinder_service_backup_program_enabled: false
|
cinder_service_backup_program_enabled: false
|
||||||
|
@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
deprecations:
|
||||||
|
- The ``cinder_keystone_auth_plugin`` variable has been deprecated.
|
||||||
|
``cinder_keystone_auth_type`` should be used instead to configure
|
||||||
|
authentication type.
|
@ -134,7 +134,7 @@ api_class = castellan.key_manager.barbican_key_manager.BarbicanKeyManager
|
|||||||
|
|
||||||
[keystone_authtoken]
|
[keystone_authtoken]
|
||||||
insecure = {{ keystone_service_internaluri_insecure | bool }}
|
insecure = {{ keystone_service_internaluri_insecure | bool }}
|
||||||
auth_plugin = {{ cinder_keystone_auth_plugin }}
|
auth_type = {{ cinder_keystone_auth_plugin }}
|
||||||
auth_url = {{ keystone_service_adminurl }}
|
auth_url = {{ keystone_service_adminurl }}
|
||||||
auth_uri = {{ keystone_service_internaluri }}
|
auth_uri = {{ keystone_service_internaluri }}
|
||||||
project_domain_id = {{ cinder_service_project_domain_id }}
|
project_domain_id = {{ cinder_service_project_domain_id }}
|
||||||
|
Loading…
Reference in New Issue
Block a user