af3828437e
This commit change the container names to consistently use the `_` char as a word separator and make the kolla external config file match the container name to make operators' life easier. Change-Id: Ibac9d76dde474b94c3cb86031ead0fd0327e126f
104 lines
3.3 KiB
YAML
104 lines
3.3 KiB
YAML
heat_template_version: pike
|
|
|
|
description: >
|
|
OpenStack containerized Aodh Evaluator service
|
|
|
|
parameters:
|
|
DockerNamespace:
|
|
description: namespace
|
|
default: 'tripleoupstream'
|
|
type: string
|
|
DockerAodhEvaluatorImage:
|
|
description: image
|
|
default: 'centos-binary-aodh-evaluator:latest'
|
|
type: string
|
|
EndpointMap:
|
|
default: {}
|
|
description: Mapping of service endpoint -> protocol. Typically set
|
|
via parameter_defaults in the resource registry.
|
|
type: json
|
|
ServiceNetMap:
|
|
default: {}
|
|
description: Mapping of service_name -> network name. Typically set
|
|
via parameter_defaults in the resource registry. This
|
|
mapping overrides those in ServiceNetMapDefaults.
|
|
type: json
|
|
DefaultPasswords:
|
|
default: {}
|
|
type: json
|
|
RoleName:
|
|
default: ''
|
|
description: Role name on which the service is applied
|
|
type: string
|
|
RoleParameters:
|
|
default: {}
|
|
description: Parameters specific to the role
|
|
type: json
|
|
|
|
resources:
|
|
|
|
ContainersCommon:
|
|
type: ./containers-common.yaml
|
|
|
|
AodhEvaluatorBase:
|
|
type: ../../puppet/services/aodh-evaluator.yaml
|
|
properties:
|
|
EndpointMap: {get_param: EndpointMap}
|
|
ServiceNetMap: {get_param: ServiceNetMap}
|
|
DefaultPasswords: {get_param: DefaultPasswords}
|
|
RoleName: {get_param: RoleName}
|
|
RoleParameters: {get_param: RoleParameters}
|
|
|
|
outputs:
|
|
role_data:
|
|
description: Role data for the Aodh API role.
|
|
value:
|
|
service_name: {get_attr: [AodhEvaluatorBase, role_data, service_name]}
|
|
config_settings:
|
|
map_merge:
|
|
- get_attr: [AodhEvaluatorBase, role_data, config_settings]
|
|
step_config: &step_config
|
|
get_attr: [AodhEvaluatorBase, role_data, step_config]
|
|
service_config_settings: {get_attr: [AodhEvaluatorBase, role_data, service_config_settings]}
|
|
# BEGIN DOCKER SETTINGS
|
|
puppet_config:
|
|
config_volume: aodh
|
|
puppet_tags: aodh_config
|
|
step_config: *step_config
|
|
config_image: &aodh_evaluator_image
|
|
list_join:
|
|
- '/'
|
|
- [ {get_param: DockerNamespace}, {get_param: DockerAodhEvaluatorImage} ]
|
|
kolla_config:
|
|
/var/lib/kolla/config_files/aodh_evaluator.json:
|
|
command: /usr/bin/aodh-evaluator
|
|
permissions:
|
|
- path: /var/log/aodh
|
|
owner: aodh:aodh
|
|
recurse: true
|
|
docker_config:
|
|
step_4:
|
|
aodh_evaluator:
|
|
image: *aodh_evaluator_image
|
|
net: host
|
|
privileged: false
|
|
restart: always
|
|
volumes:
|
|
list_concat:
|
|
- {get_attr: [ContainersCommon, volumes]}
|
|
-
|
|
- /var/lib/kolla/config_files/aodh_evaluator.json:/var/lib/kolla/config_files/config.json:ro
|
|
- /var/lib/config-data/aodh/etc/aodh/:/etc/aodh/:ro
|
|
- /var/log/containers/aodh:/var/log/aodh
|
|
environment:
|
|
- KOLLA_CONFIG_STRATEGY=COPY_ALWAYS
|
|
host_prep_tasks:
|
|
- name: create persistent logs directory
|
|
file:
|
|
path: /var/log/containers/aodh
|
|
state: directory
|
|
upgrade_tasks:
|
|
- name: Stop and disable openstack-aodh-evaluator service
|
|
tags: step2
|
|
service: name=openstack-aodh-evaluator.service state=stopped enabled=no
|