Merge "Remove empty metadata_settings from iscsid and multipathd templates"
[apex-tripleo-heat-templates.git] / docker / services / nova-consoleauth.yaml
1 heat_template_version: pike
2
3 description: >
4   OpenStack containerized Nova Consoleauth service
5
6 parameters:
7   DockerNovaConsoleauthImage:
8     description: image
9     type: string
10   DockerNovaConfigImage:
11     description: The container image to use for the nova config_volume
12     type: string
13   EndpointMap:
14     default: {}
15     description: Mapping of service endpoint -> protocol. Typically set
16                  via parameter_defaults in the resource registry.
17     type: json
18   ServiceData:
19     default: {}
20     description: Dictionary packing service data
21     type: json
22   ServiceNetMap:
23     default: {}
24     description: Mapping of service_name -> network name. Typically set
25                  via parameter_defaults in the resource registry.  This
26                  mapping overrides those in ServiceNetMapDefaults.
27     type: json
28   DefaultPasswords:
29     default: {}
30     type: json
31   RoleName:
32     default: ''
33     description: Role name on which the service is applied
34     type: string
35   RoleParameters:
36     default: {}
37     description: Parameters specific to the role
38     type: json
39
40 resources:
41
42   ContainersCommon:
43     type: ./containers-common.yaml
44
45   MySQLClient:
46     type: ../../puppet/services/database/mysql-client.yaml
47
48   NovaConsoleauthPuppetBase:
49     type: ../../puppet/services/nova-consoleauth.yaml
50     properties:
51       EndpointMap: {get_param: EndpointMap}
52       ServiceData: {get_param: ServiceData}
53       ServiceNetMap: {get_param: ServiceNetMap}
54       DefaultPasswords: {get_param: DefaultPasswords}
55       RoleName: {get_param: RoleName}
56       RoleParameters: {get_param: RoleParameters}
57
58 outputs:
59   role_data:
60     description: Role data for the Nova Consoleauth service.
61     value:
62       service_name: {get_attr: [NovaConsoleauthPuppetBase, role_data, service_name]}
63       config_settings: {get_attr: [NovaConsoleauthPuppetBase, role_data, config_settings]}
64       step_config: &step_config
65         list_join:
66           - "\n"
67           - - {get_attr: [NovaConsoleauthPuppetBase, role_data, step_config]}
68             - {get_attr: [MySQLClient, role_data, step_config]}
69       service_config_settings: {get_attr: [NovaConsoleauthPuppetBase, role_data, service_config_settings]}
70       # BEGIN DOCKER SETTINGS
71       puppet_config:
72         config_volume: nova
73         puppet_tags: nova_config
74         step_config: *step_config
75         config_image: {get_param: DockerNovaConfigImage}
76       kolla_config:
77         /var/lib/kolla/config_files/nova_consoleauth.json:
78           command: /usr/bin/nova-consoleauth
79           config_files:
80             - source: "/var/lib/kolla/config_files/src/*"
81               dest: "/"
82               merge: true
83               preserve_properties: true
84           permissions:
85             - path: /var/log/nova
86               owner: nova:nova
87               recurse: true
88       docker_config:
89         step_4:
90           nova_consoleauth:
91             image: {get_param: DockerNovaConsoleauthImage}
92             net: host
93             privileged: false
94             restart: always
95             volumes:
96               list_concat:
97                 - {get_attr: [ContainersCommon, volumes]}
98                 -
99                   - /var/lib/kolla/config_files/nova_consoleauth.json:/var/lib/kolla/config_files/config.json:ro
100                   - /var/lib/config-data/puppet-generated/nova/:/var/lib/kolla/config_files/src:ro
101                   - /var/log/containers/nova:/var/log/nova
102             environment:
103               - KOLLA_CONFIG_STRATEGY=COPY_ALWAYS
104       host_prep_tasks:
105         - name: create persistent logs directory
106           file:
107             path: /var/log/containers/nova
108             state: directory
109       upgrade_tasks:
110         - name: Stop and disable nova_consoleauth service
111           tags: step2
112           service: name=openstack-nova-consoleauth state=stopped enabled=no