Merge "Fixes multiple issues with retry function in rhel-registration."
[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: &step_config
51         get_attr: [NeutronL3Base, role_data, step_config]
52       puppet_config:
53         puppet_tags: neutron_config,neutron_l3_agent_config
54         config_volume: neutron
55         step_config: *step_config
56         config_image:
57           list_join:
58             - '/'
59             - [ {get_param: DockerNamespace}, {get_param: DockerNeutronConfigImage} ]
60       kolla_config:
61         /var/lib/kolla/config_files/neutron-l3-agent.json:
62            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
63            config_files:
64            - dest: /etc/neutron/neutron.conf
65              owner: neutron
66              perm: '0600'
67              source: /var/lib/kolla/config_files/src/etc/neutron/neutron.conf
68            - dest: /etc/neutron/l3_agent.ini
69              owner: root
70              perm: '0644'
71              source: /var/lib/kolla/config_files/src/etc/neutron/l3_agent.ini
72       docker_config:
73         step_4:
74           neutronl3agent:
75             image: &neutron_l3_agent_image
76               list_join:
77               - '/'
78               - [ {get_param: DockerNamespace}, {get_param: DockerNeutronL3AgentImage} ]
79             net: host
80             pid: host
81             privileged: true
82             restart: always
83             volumes:
84               - /var/lib/kolla/config_files/neutron-l3-agent.json:/var/lib/kolla/config_files/config.json:ro
85               - /var/lib/config-data/neutron:/var/lib/kolla/config_files/src:ro
86               - /etc/localtime:/etc/localtime:ro
87               - /lib/modules:/lib/modules:ro
88               - /run:/run
89             environment:
90               - KOLLA_CONFIG_STRATEGY=COPY_ALWAYS