blob: 2be64b1507cd0c323956d18f5f4fb95b78e2f534 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
odl-controller:
charm: ./{{ ubuntu.release }}/odl-controller
num_units: 1
{% if os.service.bindings %}
bindings:
shared-db: internal-api
internal: internal-api
{% if opnfv.spaces_dict.public is defined %}
public: public-api
{% if opnfv.spaces_dict.data is defined %}
admin: admin-api
{% else %}
admin: internal-api
{% endif %}
{% else %}
admin: internal-api
public: internal-api
{% endif %}
{% endif %}
options:
install-url: "https://nexus.opendaylight.org/content/repositories/opendaylight.release/org/opendaylight/integration/distribution-karaf/0.5.2-Boron-SR2/distribution-karaf-0.5.2-Boron-SR2.tar.gz"
{% if os.network.sfc %}
profile: "openvswitch-odl-beryllium-sfc"
{% elif os.network.bgpvpn %}
profile: "openvswitch-odl-beryllium-vpn"
{% elif os.network.odll3 %}
profile: "openvswitch-odl-beryllium-l3"
{% else %}
profile: "openvswitch-odl-boron"
{% endif %}
http-proxy: "http://squid.internal:3128"
https-proxy: "http://squid.internal:3128"
to:
- "lxd:nodes/0"
|