Merge "Containerize clustercheck galera monitor for HA deployments"
[apex-tripleo-heat-templates.git] / puppet / services / opendaylight-ovs.yaml
1 heat_template_version: pike
2
3 description: >
4   OpenDaylight OVS Configuration.
5
6 parameters:
7   OpenDaylightPort:
8     default: 8081
9     description: Set opendaylight service port
10     type: number
11   OpenDaylightUsername:
12     default: 'admin'
13     description: The username for the opendaylight server.
14     type: string
15   OpenDaylightPassword:
16     default: 'admin'
17     type: string
18     description: The password for the opendaylight server.
19     hidden: true
20   OpenDaylightConnectionProtocol:
21     description: L7 protocol used for REST access
22     type: string
23     default: 'http'
24   OpenDaylightCheckURL:
25     description: URL postfix to verify ODL has finished starting up
26     type: string
27     default: 'restconf/operational/network-topology:network-topology/topology/netvirt:1'
28   OpenDaylightApiVirtualIP:
29     type: string
30     default: ''
31   OpenDaylightProviderMappings:
32     description: Mappings between logical networks and physical interfaces.
33                  Required for VLAN deployments.  For example physnet1 -> eth1.
34     type: comma_delimited_list
35     default: "datacentre:br-ex"
36   EndpointMap:
37     default: {}
38     description: Mapping of service endpoint -> protocol. Typically set
39                  via parameter_defaults in the resource registry.
40     type: json
41   ServiceNetMap:
42     default: {}
43     description: Mapping of service_name -> network name. Typically set
44                  via parameter_defaults in the resource registry.  This
45                  mapping overrides those in ServiceNetMapDefaults.
46     type: json
47   DefaultPasswords:
48     default: {}
49     type: json
50   RoleName:
51     default: ''
52     description: Role name on which the service is applied
53     type: string
54   RoleParameters:
55     default: {}
56     description: Parameters specific to the role
57     type: json
58
59 resources:
60   OpenVswitchUpgrade:
61     type: ./openvswitch-upgrade.yaml
62
63 outputs:
64   role_data:
65     description: Role data for the OpenDaylight service.
66     value:
67       service_name: opendaylight_ovs
68       config_settings:
69         opendaylight::odl_rest_port: {get_param: OpenDaylightPort}
70         opendaylight::username: {get_param: OpenDaylightUsername}
71         opendaylight::password: {get_param: OpenDaylightPassword}
72         opendaylight_check_url: {get_param: OpenDaylightCheckURL}
73         opendaylight::nb_connection_protocol: {get_param: OpenDaylightConnectionProtocol}
74         neutron::agents::ml2::ovs::local_ip: {get_param: [ServiceNetMap, NeutronTenantNetwork]}
75         neutron::plugins::ovs::opendaylight::provider_mappings: {get_param: OpenDaylightProviderMappings}
76         tripleo.opendaylight_ovs.firewall_rules:
77           '118 neutron vxlan networks':
78              proto: 'udp'
79              dport: 4789
80           '136 neutron gre networks':
81              proto: 'gre'
82       step_config: |
83         include tripleo::profile::base::neutron::plugins::ovs::opendaylight
84       upgrade_tasks:
85         yaql:
86           expression: $.data.ovs_upgrade + $.data.opendaylight_upgrade
87           data:
88             ovs_upgrade:
89               get_attr: [OpenVswitchUpgrade, role_data, upgrade_tasks]
90             opendaylight_upgrade:
91               - name: Check if openvswitch is deployed
92                 command: systemctl is-enabled openvswitch
93                 tags: common
94                 ignore_errors: True
95                 register: openvswitch_enabled
96               - name: "PreUpgrade step0,validation: Check service openvswitch is running"
97                 shell: /usr/bin/systemctl show 'openvswitch' --property ActiveState | grep '\bactive\b'
98                 when: openvswitch_enabled.rc == 0
99                 tags: step0,validation
100               - name: Stop openvswitch service
101                 tags: step1
102                 when: openvswitch_enabled.rc == 0
103                 service: name=openvswitch state=stopped