Merge "[submodule] Bump Pharos for maas:machines sync"
[fuel.git] / mcp / salt-formulas / salt-formula-opendaylight / opendaylight / server.sls
1 ##############################################################################
2 # Copyright (c) 2017 Mirantis Inc. and others.
3 # All rights reserved. This program and the accompanying materials
4 # are made available under the terms of the Apache License, Version 2.0
5 # which accompanies this distribution, and is available at
6 # http://www.apache.org/licenses/LICENSE-2.0
7 ##############################################################################
8 {% from "opendaylight/map.jinja" import server with context %}
9 {% from "linux/map.jinja" import system with context %}
10
11 {%- if server.enabled %}
12
13 opendaylight_repo_key:
14   cmd.run:
15     - name: "apt-key adv --keyserver keyserver.ubuntu.com --recv 44C05248"
16 {%- if system.proxy is defined and system.proxy.pkg is defined %}
17     - env:
18 {%- if system.proxy.pkg.http is defined %}
19       - http_proxy: {{ system.proxy.pkg.http }}
20 {%- endif %}
21 {%- if system.proxy.pkg.https is defined %}
22       - https_proxy: {{ system.proxy.pkg.https }}
23 {%- endif %}
24 {%- endif %}
25
26 opendaylight_repo:
27   pkgrepo.managed:
28   # NOTE(armband): PPA handling behind proxy broken, define it explicitly
29   # https://github.com/saltstack/salt/pull/45224
30   # - ppa: {{ server.repo }}
31   - human_name: opendaylight-ppa
32   - name: deb http://ppa.launchpad.net/odl-team/{{ server.version }}/ubuntu xenial main
33   - file: /etc/apt/sources.list.d/odl-team-ubuntu-{{ server.version }}-xenial.list
34
35 {%- if grains['saltversioninfo'] < [2017, 7] %}
36 service.mask:
37   module.run:
38   - m_name: opendaylight
39 {%- else %}
40 opendaylight_service_mask:
41   service.masked:
42   - name: opendaylight
43 {%- endif %}
44
45 opendaylight:
46   pkg.installed:
47   - require:
48     - pkgrepo: opendaylight_repo
49   service.running:
50   - enable: true
51 {%- if grains['saltversioninfo'] >= [2017, 7] %}
52   - unmask: true
53 {%- endif %}
54   - watch:
55     - file: /opt/opendaylight/etc/jetty.xml
56     - file: /opt/opendaylight/bin/setenv
57     - ini: /opt/opendaylight/etc/org.apache.karaf.features.cfg
58     - ini: /opt/opendaylight/etc/org.ops4j.pax.web.cfg
59
60 /opt/opendaylight/etc/jetty.xml:
61   file.managed:
62   - source: salt://opendaylight/files/jetty.xml
63   - template: jinja
64   - user: odl
65   - group: odl
66
67 /opt/opendaylight/bin/setenv:
68   file.managed:
69   - source: salt://opendaylight/files/setenv.shell
70   - mode: 0755
71   - use:
72     - file: /opt/opendaylight/etc/jetty.xml
73
74 {% set features %}
75 {%- for f in server.karaf_features.itervalues() -%}
76 {{ f | join(',') }}{%- if not loop.last %},{%- endif %}
77 {%- endfor %}
78 {% endset %}
79
80 /opt/opendaylight/etc/org.apache.karaf.features.cfg:
81   ini.options_present:
82     - sections:
83         featuresBoot: {{ features }}
84
85 /opt/opendaylight/etc/org.ops4j.pax.web.cfg:
86   ini.options_present:
87     - sections:
88         org.ops4j.pax.web.listening.addresses: {{ server.odl_bind_ip }}
89         org.osgi.service.http.port: {{ server.odl_rest_port }}
90
91 {%- if server.get('router_enabled', false) %}
92 /opt/opendaylight/etc/custom.properties:
93   ini.options_present:
94     - sections:
95         ovsdb.l3.fwd.enabled: 'yes'
96         ovsdb.of.version: 1.3
97     - require:
98       - pkg: opendaylight
99     - watch_in:
100       - service: opendaylight
101 {%- endif %}
102
103 {%- if server.dhcp.enabled %}
104 /opt/opendaylight/etc/opendaylight/datastore/initial/config/netvirt-dhcpservice-config.xml:
105   file.managed:
106   - source: salt://opendaylight/files/netvirt-dhcpservice-config.xml
107   - makedirs: true
108   - watch_in:
109     - service: opendaylight
110   - use:
111     - file: /opt/opendaylight/etc/jetty.xml
112 {%- endif %}
113
114 {%- if grains['cpuarch'] == 'aarch64' %}
115 opendaylight-leveldbjni:
116   pkg.installed
117 {%- endif %}
118
119 {%- endif %}