Pass the DOCKER_* env vars when running docker
[apex-tripleo-heat-templates.git] / docker / services / neutron-dhcp.yaml
1 heat_template_version: ocata
2
3 description: >
4   OpenStack containerized Neutron DHCP service
5
6 parameters:
7   DockerNamespace:
8     description: namespace
9     default: 'tripleoupstream'
10     type: string
11   DockerNeutronApiImage:
12     description: image
13     default: 'centos-binary-neutron-dhcp-agent:latest'
14     type: string
15   # we configure all neutron services in the same neutron
16   DockerNeutronConfigImage:
17     description: image
18     default: 'centos-binary-neutron-openvswitch-agent:latest'
19     type: string
20   EndpointMap:
21     default: {}
22     description: Mapping of service endpoint -> protocol. Typically set
23                  via parameter_defaults in the resource registry.
24     type: json
25   ServiceNetMap:
26     default: {}
27     description: Mapping of service_name -> network name. Typically set
28                  via parameter_defaults in the resource registry.  This
29                  mapping overrides those in ServiceNetMapDefaults.
30     type: json
31   DefaultPasswords:
32     default: {}
33     type: json
34
35 resources:
36
37   NeutronBase:
38     type: ../../puppet/services/neutron-dhcp.yaml
39     properties:
40       EndpointMap: {get_param: EndpointMap}
41       ServiceNetMap: {get_param: ServiceNetMap}
42       DefaultPasswords: {get_param: DefaultPasswords}
43
44 outputs:
45   role_data:
46     description: Role data for the Neutron DHCP role.
47     value:
48       service_name: {get_attr: [NeutronBase, role_data, service_name]}
49       config_settings:
50         map_merge:
51           - get_attr: [NeutronBase, role_data, config_settings]
52       step_config: {get_attr: [NeutronBase, role_data, step_config]}
53       service_config_settings: {get_attr: [NeutronBase, role_data, service_config_settings]}
54       # BEGIN DOCKER SETTINGS
55       docker_image: &neutron_dhcp_image
56         list_join:
57           - '/'
58           - [ {get_param: DockerNamespace}, {get_param: DockerNeutronApiImage} ]
59       puppet_tags: neutron_config,neutron_dhcp_agent_config
60       config_volume: neutron
61       config_image:
62         list_join:
63           - '/'
64           - [ {get_param: DockerNamespace}, {get_param: DockerNeutronConfigImage} ]
65       kolla_config:
66          /var/lib/kolla/config_files/neutron_dhcp.json:
67            command: /usr/bin/neutron-dhcp-agent --config-file /usr/share/neutron/neutron-dist.conf --config-file /etc/neutron/neutron.conf --config-file /etc/neutron/dhcp_agent.ini --log-file /var/log/neutron/dhcp-agent.log
68            config_files:
69            - dest: /etc/neutron/neutron.conf
70              owner: neutron
71              perm: '0640'
72              source: /var/lib/kolla/config_files/src/etc/neutron/neutron.conf
73            - dest: /etc/neutron/dhcp_agent.ini
74              owner: neutron
75              perm: '0640'
76              source: /var/lib/kolla/config_files/src/etc/neutron/dhcp_agent.ini
77       docker_config:
78         step_4:
79           neutron_dhcp:
80             image: *neutron_dhcp_image
81             net: host
82             pid: host
83             privileged: true
84             restart: always
85             volumes:
86               - /var/lib/kolla/config_files/neutron_dhcp.json:/var/lib/kolla/config_files/config.json:ro
87               - /var/lib/config-data/neutron/:/var/lib/kolla/config_files/src:ro
88               - /etc/localtime:/etc/localtime:ro
89               - /etc/hosts:/etc/hosts:ro
90               - /lib/modules:/lib/modules:ro
91               - /run/:/run
92             environment:
93               - KOLLA_CONFIG_STRATEGY=COPY_ALWAYS