Add CephConfigOverrides to allow arbitrary configs in ceph.conf
[apex-tripleo-heat-templates.git] / docker / services / neutron-ovs-agent.yaml
1 heat_template_version: pike
2
3 description: >
4   OpenStack Neutron openvswitch service
5
6 parameters:
7   DockerOpenvswitchImage:
8     description: image
9     type: string
10   DockerNeutronConfigImage:
11     description: The container image to use for the neutron config_volume
12     type: string
13   ServiceData:
14     default: {}
15     description: Dictionary packing service data
16     type: json
17   ServiceNetMap:
18     default: {}
19     description: Mapping of service_name -> network name. Typically set
20                  via parameter_defaults in the resource registry.  This
21                  mapping overrides those in ServiceNetMapDefaults.
22     type: json
23   DefaultPasswords:
24     default: {}
25     type: json
26   RoleName:
27     default: ''
28     description: Role name on which the service is applied
29     type: string
30   RoleParameters:
31     default: {}
32     description: Parameters specific to the role
33     type: json
34   EndpointMap:
35     default: {}
36     description: Mapping of service endpoint -> protocol. Typically set
37                  via parameter_defaults in the resource registry.
38     type: json
39
40 resources:
41
42   ContainersCommon:
43     type: ./containers-common.yaml
44
45   NeutronOvsAgentBase:
46     type: ../../puppet/services/neutron-ovs-agent.yaml
47     properties:
48       EndpointMap: {get_param: EndpointMap}
49       ServiceData: {get_param: ServiceData}
50       ServiceNetMap: {get_param: ServiceNetMap}
51       DefaultPasswords: {get_param: DefaultPasswords}
52       RoleName: {get_param: RoleName}
53       RoleParameters: {get_param: RoleParameters}
54
55 outputs:
56   role_data:
57     description: Role data for Neutron openvswitch service
58     value:
59       service_name: {get_attr: [NeutronOvsAgentBase, role_data, service_name]}
60       config_settings: {get_attr: [NeutronOvsAgentBase, role_data, config_settings]}
61       step_config: &step_config
62         get_attr: [NeutronOvsAgentBase, role_data, step_config]
63       puppet_config:
64         config_volume: neutron
65         puppet_tags: neutron_config,neutron_agent_ovs,neutron_plugin_ml2
66         step_config: *step_config
67         config_image: {get_param: DockerNeutronConfigImage}
68       kolla_config:
69         /var/lib/kolla/config_files/neutron_ovs_agent.json:
70           command: /usr/bin/neutron-openvswitch-agent --config-file /usr/share/neutron/neutron-dist.conf --config-file /etc/neutron/neutron.conf --config-file /etc/neutron/plugins/ml2/openvswitch_agent.ini --config-file /etc/neutron/plugins/ml2/ml2_conf.ini --config-dir /etc/neutron/conf.d/common
71           config_files:
72             - source: "/var/lib/kolla/config_files/src/*"
73               dest: "/"
74               merge: true
75               preserve_properties: true
76           permissions:
77             - path: /var/log/neutron
78               owner: neutron:neutron
79               recurse: true
80       docker_config:
81         step_3:
82           neutron_ovs_bridge:
83             detach: false
84             image: {get_param: DockerNeutronConfigImage}
85             net: host
86             pid: host
87             user: root
88             privileged: true
89             command:
90               - puppet
91               - apply
92               - --modulepath
93               - /etc/puppet/modules:/usr/share/openstack-puppet/modules
94               - --tags
95               - file,file_line,concat,augeas,neutron::plugins::ovs::bridge
96               - -v
97               - -e
98               - include neutron::agents::ml2::ovs
99             volumes:
100               list_concat:
101                 - {get_attr: [ContainersCommon, volumes]}
102                 -
103                   - /var/lib/kolla/config_files/neutron_ovs_agent.json:/var/lib/kolla/config_files/config.json:ro
104                   - /var/lib/config-data/puppet-generated/neutron/:/var/lib/kolla/config_files/src:ro
105                   - /lib/modules:/lib/modules:ro
106                   - /run:/run
107                   - /etc/puppet:/etc/puppet:ro
108                   - /usr/share/openstack-puppet/modules/:/usr/share/openstack-puppet/modules/:ro
109                   - /var/run/openvswitch/db.sock:/var/run/openvswitch/db.sock
110             environment:
111               - KOLLA_CONFIG_STRATEGY=COPY_ALWAYS
112         step_4:
113           neutron_ovs_agent:
114             image: {get_param: DockerOpenvswitchImage}
115             net: host
116             pid: host
117             privileged: true
118             restart: always
119             volumes:
120               list_concat:
121                 - {get_attr: [ContainersCommon, volumes]}
122                 -
123                   - /var/lib/kolla/config_files/neutron_ovs_agent.json:/var/lib/kolla/config_files/config.json:ro
124                   - /var/lib/config-data/puppet-generated/neutron/:/var/lib/kolla/config_files/src:ro
125                   - /lib/modules:/lib/modules:ro
126                   - /run:/run
127                   - /var/log/containers/neutron:/var/log/neutron
128             environment:
129               - KOLLA_CONFIG_STRATEGY=COPY_ALWAYS
130       host_prep_tasks:
131         - name: create persistent logs directory
132           file:
133             path: /var/log/containers/neutron
134             state: directory
135       upgrade_tasks:
136         - name: Stop and disable neutron_ovs_agent service
137           tags: step2
138           service: name=neutron-openvswitch-agent state=stopped enabled=no