Merge "Exposing the ability to enable/disable the repository"
[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   OpenDaylightManageRepositories:
62     description: Whether to manage the OpenDaylight repository
63     type: boolean
64     default: false
65
66 outputs:
67   role_data:
68     description: Role data for the OpenDaylight service.
69     value:
70       service_name: opendaylight_api
71       config_settings:
72         opendaylight::odl_rest_port: {get_param: OpenDaylightPort}
73         opendaylight::username: {get_param: OpenDaylightUsername}
74         opendaylight::password: {get_param: OpenDaylightPassword}
75         opendaylight::extra_features: {get_param: OpenDaylightFeatures}
76         opendaylight::enable_dhcp: {get_param: OpenDaylightEnableDHCP}
77         opendaylight::odl_bind_ip: {get_param: [ServiceNetMap, OpendaylightApiNetwork]}
78         opendaylight::nb_connection_protocol: {get_param: OpenDaylightConnectionProtocol}
79         opendaylight::manage_repositories: {get_param: OpenDaylightManageRepositories}
80         tripleo.opendaylight_api.firewall_rules:
81               '137 opendaylight api':
82                 dport:
83                   - {get_param: OpenDaylightPort}
84                   - 6640
85                   - 6653
86                   - 2550
87       step_config: |
88         include tripleo::profile::base::neutron::opendaylight
89       upgrade_tasks:
90         - name: Check if opendaylight is deployed
91           command: systemctl is-enabled opendaylight
92           tags: common
93           ignore_errors: True
94           register: opendaylight_enabled
95         - name: "PreUpgrade step0,validation: Check service opendaylight is running"
96           shell: /usr/bin/systemctl show 'opendaylight' --property ActiveState | grep '\bactive\b'
97           when: opendaylight_enabled.rc == 0
98           tags: step0,validation
99         - name: Stop opendaylight service
100           tags: step1
101           when: opendaylight_enabled.rc == 0
102           service: name=opendaylight state=stopped
103         - name: Removes ODL snapshots, data, journal directories
104           file:
105             state: absent
106             path: /opt/opendaylight/{{item}}
107           tags: step2
108           with_items:
109             - snapshots
110             - data
111             - journal