Basic barbican configuration
Usual suspects:
- database
- keystone
- messaging
Services:
- apache web site for api's
- worker
- keystone-listener
Barbican:
- Crypto plugins configuration fragments
- Support multiple stores
Add some information to README
Change-Id: Ie58a0daf318c99ea0e41c3c9dd5fcc450f356276
diff --git a/metadata/service/server/single.yml b/metadata/service/server/single.yml
index ca23e30..91d1b2f 100644
--- a/metadata/service/server/single.yml
+++ b/metadata/service/server/single.yml
@@ -3,8 +3,44 @@
classes:
- service.barbican.support
parameters:
+ _param:
+ keystone_barbican_endpoint_type: internalURL
barbican:
server:
enabled: true
+ version: ${_param:barbican_version}
+ region: ${_param:openstack_region}
+ host_href: ''
+ is_proxied: false
bind:
- address: 0.0.0.0
+ address: ${_param:single_address}
+ port: 9311
+ admin_port: 9312
+ database:
+ engine: "mysql+pymysql"
+ host: ${_param:single_address}
+ port: 3306
+ name: barbican
+ user: barbican
+ password: ${_param:mysql_barbican_password}
+ identity:
+ engine: keystone
+ host: ${_param:single_address}
+ port: 35357
+ domain: default
+ tenant: service
+ user: barbican
+ password: ${_param:keystone_barbican_password}
+ endpoint_type: ${_param:keystone_barbican_endpoint_type}
+ message_queue:
+ engine: rabbitmq
+ host: ${_param:single_address}
+ port: 5672
+ user: openstack
+ password: ${_param:rabbitmq_openstack_password}
+ virtual_host: '/openstack'
+ cache:
+ members:
+ - host: ${_param:single_address}
+ port: 11211
+