Support custom config for Barbican

Story: 2003880
Task: 26741
Change-Id: Ia200a5b0de42963643980bdfd3677e3fca833850
This commit is contained in:
Doug Szumski 2018-09-26 15:05:31 +01:00
parent 228fe88cf7
commit 53ee8293cd
3 changed files with 14 additions and 0 deletions

View File

@ -5,6 +5,12 @@ kolla_extra_config_path:
# Directory where Kolla custom configuration files will be installed.
kolla_node_custom_config_path: /etc/kolla/config
###############################################################################
# Barbican configuration.
# Whether to enable Barbican.
kolla_enable_barbican:
###############################################################################
# ceph configuration.

View File

@ -9,6 +9,11 @@
# the destination, and will not be removed from the destination, even
# if disabled or unexpected.
kolla_openstack_custom_config:
# Barbican.
- src: "{{ kolla_extra_config_path }}/barbican"
dest: "{{ kolla_node_custom_config_path }}/barbican"
patterns: "*"
enabled: "{{ kolla_enable_barbican }}"
# Ceph.
- src: "{{ kolla_extra_config_path }}/ceph"
dest: "{{ kolla_node_custom_config_path }}/ceph"

View File

@ -0,0 +1,3 @@
---
features:
- Adds support for custom Barbican configuration.