c74ab4fe4e8cdee26023a0e5b1d3632a46660214
[apex-tripleo-heat-templates.git] / docker / services / neutron-l3.yaml
1 heat_template_version: ocata
2
3 description: >
4   OpenStack containerized Neutron L3 agent
5
6 parameters:
7   DockerNamespace:
8     description: namespace
9     default: 'tripleoupstream'
10     type: string
11   DockerNeutronL3AgentImage:
12     description: image
13     default: 'centos-binary-neutron-l3-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   ServiceNetMap:
21     default: {}
22     description: Mapping of service_name -> network name. Typically set
23                  via parameter_defaults in the resource registry.  This
24                  mapping overrides those in ServiceNetMapDefaults.
25     type: json
26   DefaultPasswords:
27     default: {}
28     type: json
29   EndpointMap:
30     default: {}
31     description: Mapping of service endpoint -> protocol. Typically set
32                  via parameter_defaults in the resource registry.
33     type: json
34
35 resources:
36
37   NeutronL3Base:
38     type: ../../puppet/services/neutron-l3.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 Neutron L3 agent
47     value:
48       service_name: {get_attr: [NeutronL3Base, role_data, service_name]}
49       config_settings: {get_attr: [NeutronL3Base, role_data, config_settings]}
50       step_config: {get_attr: [NeutronL3Base, role_data, step_config]}
51       docker_image: &neutron_l3_agent_image
52         list_join:
53         - '/'
54         - [ {get_param: DockerNamespace}, {get_param: DockerNeutronL3AgentImage} ]
55       puppet_tags: neutron_config,neutron_l3_agent_config
56       config_volume: neutron
57       config_image:
58         list_join:
59           - '/'
60           - [ {get_param: DockerNamespace}, {get_param: DockerNeutronConfigImage} ]
61       kolla_config:
62         /var/lib/kolla/config_files/neutron-l3-agent.json:
63            command: /usr/bin/neutron-l3-agent --config-file /usr/share/neutron/neutron-dist.conf --config-dir /usr/share/neutron/l3_agent --config-file /etc/neutron/neutron.conf --config-file /etc/neutron/l3_agent.ini
64            config_files:
65            - dest: /etc/neutron/neutron.conf
66              owner: neutron
67              perm: '0600'
68              source: /var/lib/kolla/config_files/src/etc/neutron/neutron.conf
69            - dest: /etc/neutron/l3_agent.ini
70              owner: root
71              perm: '0644'
72              source: /var/lib/kolla/config_files/src/etc/neutron/l3_agent.ini
73       docker_config:
74         step_4:
75           neutronl3agent:
76             image: *neutron_l3_agent_image
77             net: host
78             pid: host
79             privileged: true
80             restart: always
81             volumes:
82               - /var/lib/kolla/config_files/neutron-l3-agent.json:/var/lib/kolla/config_files/config.json:ro
83               - /var/lib/config-data/neutron:/var/lib/kolla/config_files/src:ro
84               - /etc/localtime:/etc/localtime:ro
85               - /lib/modules:/lib/modules:ro
86               - /run:/run
87             environment:
88               - KOLLA_CONFIG_STRATEGY=COPY_ALWAYS