Merge "LVM in cinder-volume container without udev"
[apex-tripleo-heat-templates.git] / puppet / services / opendaylight-api.yaml
1 heat_template_version: pike
2
3 description: >
4   OpenDaylight SDN Controller.
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   OpenDaylightEnableDHCP:
25     description: Knob to enable/disable ODL DHCP Server
26     type: boolean
27     default: false
28   OpenDaylightFeatures:
29     description: List of features to install with ODL
30     type: comma_delimited_list
31     default: ["odl-netvirt-openstack","odl-netvirt-ui","odl-jolokia"]
32   OpenDaylightApiVirtualIP:
33     type: string
34     default: ''
35   EndpointMap:
36     default: {}
37     description: Mapping of service endpoint -> protocol. Typically set
38                  via parameter_defaults in the resource registry.
39     type: json
40   ServiceData:
41     default: {}
42     description: Dictionary packing service data
43     type: json
44   ServiceNetMap:
45     default: {}
46     description: Mapping of service_name -> network name. Typically set
47                  via parameter_defaults in the resource registry.  This
48                  mapping overrides those in ServiceNetMapDefaults.
49     type: json
50   DefaultPasswords:
51     default: {}
52     type: json
53   RoleName:
54     default: ''
55     description: Role name on which the service is applied
56     type: string
57   RoleParameters:
58     default: {}
59     description: Parameters specific to the role
60     type: json
61
62 outputs:
63   role_data:
64     description: Role data for the OpenDaylight service.
65     value:
66       service_name: opendaylight_api
67       config_settings:
68         opendaylight::odl_rest_port: {get_param: OpenDaylightPort}
69         opendaylight::username: {get_param: OpenDaylightUsername}
70         opendaylight::password: {get_param: OpenDaylightPassword}
71         opendaylight::extra_features: {get_param: OpenDaylightFeatures}
72         opendaylight::enable_dhcp: {get_param: OpenDaylightEnableDHCP}
73         opendaylight::odl_bind_ip: {get_param: [ServiceNetMap, OpendaylightApiNetwork]}
74         opendaylight::nb_connection_protocol: {get_param: OpenDaylightConnectionProtocol}
75         tripleo.opendaylight_api.firewall_rules:
76               '137 opendaylight api':
77                 dport:
78                   - {get_param: OpenDaylightPort}
79                   - 6640
80                   - 6653
81                   - 2550
82       step_config: |
83         include tripleo::profile::base::neutron::opendaylight
84       upgrade_tasks:
85         - name: Check if opendaylight is deployed
86           command: systemctl is-enabled opendaylight
87           tags: common
88           ignore_errors: True
89           register: opendaylight_enabled
90         - name: "PreUpgrade step0,validation: Check service opendaylight is running"
91           shell: /usr/bin/systemctl show 'opendaylight' --property ActiveState | grep '\bactive\b'
92           when: opendaylight_enabled.rc == 0
93           tags: step0,validation
94         - name: Stop opendaylight service
95           tags: step1
96           when: opendaylight_enabled.rc == 0
97           service: name=opendaylight state=stopped
98         - name: Removes ODL snapshots, data, journal directories
99           file:
100             state: absent
101             path: /opt/opendaylight/{{item}}
102           tags: step2
103           with_items:
104             - snapshots
105             - data
106             - journal