6090dc6677
This change combines the previous puppet and docker files into a single file that performs the docker service installation and configuration for the designate Producer, Worker, and Mdns services. Change-Id: Ibbd14996eb6fc9b2e45dd9f24d3b7156c42da990 Related-Blueprint: services-yaml-flattening
144 lines
4.7 KiB
YAML
144 lines
4.7 KiB
YAML
heat_template_version: rocky
|
|
|
|
description: >
|
|
OpenStack containerized Designate Sink service
|
|
|
|
parameters:
|
|
DockerDesignateSinkImage:
|
|
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
|
|
MonitoringSubscriptionDesignateSink:
|
|
default: 'overcloud-designate-sink'
|
|
type: string
|
|
DesignateWorkers:
|
|
default: 0
|
|
description: Number of workers for Designate services.
|
|
type: number
|
|
|
|
conditions:
|
|
designate_workers_zero: {equals : [{get_param: DesignateWorkers}, 0]}
|
|
|
|
resources:
|
|
|
|
ContainersCommon:
|
|
type: ../../docker/services/containers-common.yaml
|
|
|
|
DesignateBase:
|
|
type: ./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}
|
|
|
|
outputs:
|
|
role_data:
|
|
description: Role data for the Designate Sink role.
|
|
value:
|
|
service_name: designate_sink
|
|
monitoring_subscription: {get_param: MonitoringSubscriptionDesignateSink}
|
|
config_settings:
|
|
map_merge:
|
|
- get_attr: [DesignateBase, role_data, config_settings]
|
|
-
|
|
if:
|
|
- designate_workers_zero
|
|
- {}
|
|
- designate::sink::workers: {get_param: DesignateWorkers}
|
|
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]}
|
|
- "include tripleo::profile::base::designate::sink"
|
|
config_image: {get_param: DockerDesignateConfigImage}
|
|
kolla_config:
|
|
/var/lib/kolla/config_files/designate_sink.json:
|
|
command: /usr/bin/designate-sink --config-file=/etc/designate/designate.conf --log-file=/var/log/designate/sink.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:
|
|
step_4:
|
|
designate_sink:
|
|
image: &designate_sink_image {get_param: DockerDesignateSinkImage}
|
|
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_sink.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
|
|
host_prep_tasks:
|
|
- name: create persistent directories
|
|
file:
|
|
path: "{{ item.path }}"
|
|
state: directory
|
|
setype: "{{ item.setype }}"
|
|
with_items:
|
|
- { 'path': /var/log/designate, 'setype': svirt_sandbox_file_t }
|
|
- { 'path': /var/log/containers/designate, '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_sink
|