[docker] Add docker-compose definitions
[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   - require_in:
50     - file: /opt/opendaylight/etc/jetty.xml
51     - file: /opt/opendaylight/bin/setenv
52     - ini: /opt/opendaylight/etc/org.apache.karaf.features.cfg
53     - ini: /opt/opendaylight/etc/org.ops4j.pax.web.cfg
54   service.running:
55   - enable: true
56 {%- if grains['saltversioninfo'] >= [2017, 7] %}
57   - unmask: true
58 {%- endif %}
59   - watch:
60     - file: /opt/opendaylight/etc/jetty.xml
61     - file: /opt/opendaylight/bin/setenv
62     - ini: /opt/opendaylight/etc/org.apache.karaf.features.cfg
63     - ini: /opt/opendaylight/etc/org.ops4j.pax.web.cfg
64
65 /opt/opendaylight/etc/jetty.xml:
66   file.managed:
67   - source: salt://opendaylight/files/jetty.xml
68   - template: jinja
69   - user: odl
70   - group: odl
71
72 /opt/opendaylight/bin/setenv:
73   file.managed:
74   - source: salt://opendaylight/files/setenv.shell
75   - mode: 0755
76   - use:
77     - file: /opt/opendaylight/etc/jetty.xml
78
79 {% set features %}
80 {%- for f in server.karaf_features.itervalues() -%}
81 {{ f | join(',') }}{%- if not loop.last %},{%- endif %}
82 {%- endfor %}
83 {% endset %}
84
85 /opt/opendaylight/etc/org.apache.karaf.features.cfg:
86   ini.options_present:
87     - sections:
88         featuresBoot: {{ features }}
89
90 /opt/opendaylight/etc/org.ops4j.pax.web.cfg:
91   ini.options_present:
92     - sections:
93         org.ops4j.pax.web.listening.addresses: {{ server.odl_bind_ip }}
94         org.osgi.service.http.port: {{ server.odl_rest_port }}
95
96 {%- if server.get('router_enabled', false) %}
97 /opt/opendaylight/etc/custom.properties:
98   ini.options_present:
99     - sections:
100         ovsdb.l3.fwd.enabled: 'yes'
101         ovsdb.of.version: 1.3
102     - require:
103       - pkg: opendaylight
104     - watch_in:
105       - service: opendaylight
106 {%- endif %}
107
108 {%- if grains['cpuarch'] == 'aarch64' %}
109 opendaylight-leveldbjni:
110   pkg.installed
111 {%- endif %}
112
113 {%- endif %}