47b75398d1
For all containers where restart=always is configured and that are not managed by Pacemaker (this part will be handled later), we remove these containers at step 1 of post_upgrade_tasks. Change-Id: Id446dbf7b0a18bd1d4539856e6709d35c7cfa0f0
179 lines
6.5 KiB
YAML
179 lines
6.5 KiB
YAML
heat_template_version: rocky
|
|
|
|
description: >
|
|
OpenStack containerized Designate Central service
|
|
|
|
parameters:
|
|
DockerDesignateCentralImage:
|
|
description: image
|
|
type: string
|
|
DockerDesignateConfigImage:
|
|
description: The container image to use for the designate config_volume
|
|
type: string
|
|
EndpointMap:
|
|
default: {}
|
|
description: Mapping of service endpoint -> protocol. Typically set
|
|
via parameter_defaults in the resource registry.
|
|
type: json
|
|
ServiceData:
|
|
default: {}
|
|
description: Dictionary packing service data
|
|
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
|
|
|
|
MySQLClient:
|
|
type: ../../puppet/services/database/mysql-client.yaml
|
|
|
|
DesignateBase:
|
|
type: ../../puppet/services/designate-base.yaml
|
|
properties:
|
|
EndpointMap: {get_param: EndpointMap}
|
|
ServiceData: {get_param: ServiceData}
|
|
ServiceNetMap: {get_param: ServiceNetMap}
|
|
DefaultPasswords: {get_param: DefaultPasswords}
|
|
RoleName: {get_param: RoleName}
|
|
RoleParameters: {get_param: RoleParameters}
|
|
|
|
DesignateCentralBase:
|
|
type: ../../puppet/services/designate-central.yaml
|
|
properties:
|
|
EndpointMap: {get_param: EndpointMap}
|
|
ServiceData: {get_param: ServiceData}
|
|
ServiceNetMap: {get_param: ServiceNetMap}
|
|
DefaultPasswords: {get_param: DefaultPasswords}
|
|
RoleName: {get_param: RoleName}
|
|
RoleParameters: {get_param: RoleParameters}
|
|
|
|
outputs:
|
|
role_data:
|
|
description: Role data for the Designate Central role.
|
|
value:
|
|
service_name: {get_attr: [DesignateCentralBase, role_data, service_name]}
|
|
config_settings:
|
|
map_merge:
|
|
- get_attr: [DesignateBase, role_data, config_settings]
|
|
- get_attr: [DesignateCentralBase, role_data, config_settings]
|
|
service_config_settings: {get_attr: [DesignateCentralBase, role_data, service_config_settings]}
|
|
# BEGIN DOCKER SETTINGS
|
|
puppet_config:
|
|
config_volume: designate
|
|
puppet_tags: designate_config
|
|
step_config:
|
|
list_join:
|
|
- "\n"
|
|
- - {get_attr: [DesignateBase, role_data, step_config]}
|
|
- {get_attr: [DesignateCentralBase, role_data, step_config]}
|
|
- {get_attr: [MySQLClient, role_data, step_config]}
|
|
config_image: {get_param: DockerDesignateConfigImage}
|
|
kolla_config:
|
|
/var/lib/kolla/config_files/designate_central.json:
|
|
command: /usr/bin/designate-central --config-file=/etc/designate/designate.conf --log-file=/var/log/designate/central.log
|
|
config_files:
|
|
- source: "/var/lib/kolla/config_files/src/*"
|
|
dest: "/"
|
|
merge: true
|
|
preserve_properties: true
|
|
permissions:
|
|
- path: /var/log/designate
|
|
owner: designate:designate
|
|
recurse: true
|
|
docker_config:
|
|
# db sync runs before permissions set by kolla_config
|
|
step_2:
|
|
designate_init_logs:
|
|
image: &designate_central_image {get_param: DockerDesignateCentralImage}
|
|
privileged: false
|
|
user: root
|
|
volumes:
|
|
- /var/log/containers/designate:/var/log/designate:z
|
|
command: ['/bin/bash', '-c', 'chown -R designate:designate /var/log/designate']
|
|
step_3:
|
|
designate_db_sync:
|
|
image: *designate_central_image
|
|
net: host
|
|
privileged: false
|
|
detach: false
|
|
user: root
|
|
volumes:
|
|
list_concat:
|
|
- {get_attr: [ContainersCommon, volumes]}
|
|
-
|
|
- /var/lib/config-data/designate/etc/my.cnf.d/tripleo.cnf:/etc/my.cnf.d/tripleo.cnf:ro
|
|
- /var/lib/config-data/designate/etc/designate/:/etc/designate/:ro
|
|
- /var/log/containers/designate:/var/log/designate:z
|
|
command: "/usr/bin/bootstrap_host_exec designate_central su designate -s /bin/bash -c 'designate-manage --config-file /etc/designate/designate.conf database sync'"
|
|
step_4:
|
|
designate_central:
|
|
image: *designate_central_image
|
|
net: host
|
|
privileged: false
|
|
restart: always
|
|
healthcheck:
|
|
test: /openstack/healthcheck
|
|
volumes:
|
|
list_concat:
|
|
- {get_attr: [ContainersCommon, volumes]}
|
|
-
|
|
- /run:/run
|
|
- /var/lib/kolla/config_files/designate_central.json:/var/lib/kolla/config_files/config.json:ro
|
|
- /var/lib/config-data/puppet-generated/designate/:/var/lib/kolla/config_files/src:ro
|
|
- /var/log/containers/designate:/var/log/designate:z
|
|
environment:
|
|
- KOLLA_CONFIG_STRATEGY=COPY_ALWAYS
|
|
step_5:
|
|
designate_pool_manage:
|
|
image: *designate_central_image
|
|
net: host
|
|
privileged: false
|
|
detach: false
|
|
user: root
|
|
volumes:
|
|
list_concat:
|
|
- {get_attr: [ContainersCommon, volumes]}
|
|
-
|
|
- /var/lib/config-data/designate/etc/designate/:/etc/designate/:ro
|
|
- /var/log/containers/designate:/var/log/designate:z
|
|
command: "/usr/bin/bootstrap_host_exec designate_central su designate -s /bin/bash -c '/bin/designate-manage pool update'"
|
|
host_prep_tasks:
|
|
- name: create persistent logs directory
|
|
file:
|
|
path: /var/log/containers/designate
|
|
state: directory
|
|
setype: svirt_sandbox_file_t
|
|
- name: designate logs readme
|
|
copy:
|
|
dest: /var/log/designate/readme.txt
|
|
content: |
|
|
Log files from designate containers can be found under
|
|
/var/log/containers/designate.
|
|
ignore_errors: true
|
|
post_upgrade_tasks:
|
|
- when: step|int == 1
|
|
import_role:
|
|
name: tripleo-docker-rm
|
|
vars:
|
|
containers_to_rm:
|
|
- designate_central
|