summaryrefslogtreecommitdiffstats
path: root/ci/config_tpl/juju2/bundle_tpl/ceph.yaml
diff options
context:
space:
mode:
authorNarinder Gupta <narinder.gupta@canonical.com>2017-01-19 10:02:50 -0600
committerNarinder Gupta <narinder.gupta@canonical.com>2017-01-19 11:43:46 -0600
commit0cd6c7dac297478d5dd66313aef09e5e5324d2ad (patch)
tree9e5ff2f4d4e03f1196c8ffc7c6785045bcc5f86c /ci/config_tpl/juju2/bundle_tpl/ceph.yaml
parentbbd5aa8591fb02f6c73217df81108d43cfc747b4 (diff)
modfiied to support the new spaces in juju.
Change-Id: I4938bb53b0172ebde9a110d7ac6a0725064aa5ca Signed-off-by: Narinder Gupta <narinder.gupta@canonical.com>
Diffstat (limited to 'ci/config_tpl/juju2/bundle_tpl/ceph.yaml')
-rw-r--r--ci/config_tpl/juju2/bundle_tpl/ceph.yaml38
1 files changed, 30 insertions, 8 deletions
diff --git a/ci/config_tpl/juju2/bundle_tpl/ceph.yaml b/ci/config_tpl/juju2/bundle_tpl/ceph.yaml
index 9592fae6..0d5c5f21 100644
--- a/ci/config_tpl/juju2/bundle_tpl/ceph.yaml
+++ b/ci/config_tpl/juju2/bundle_tpl/ceph.yaml
@@ -1,11 +1,24 @@
{% if opnfv.storage_dict.ceph is defined %}
- ceph:
- charm: "./{{ ubuntu.release }}/ceph"
+ ceph-mon:
+ charm: "./{{ ubuntu.release }}/ceph-mon"
num_units: {{ unit_ceph_qty() }}
+{% if os.service.bindings %}
+ bindings:
+{% if opnfv.spaces_dict.public is defined %}
+ public: public-api
+{% else %}
+ public: internal-api
+{% endif %}
+{% if opnfv.spaces_dict.storage is defined %}
+ cluster: cluster-stor
+{% else %}
+ cluster: internal-api
+{% endif %}
+{% endif %}
options:
monitor-count: {{ unit_ceph_qty() }}
- fsid: 5a791d94-980b-11e4-b6f6-3c970e8b1cf7
- monitor-secret: AQAi5a9UeJXUExAA+By9u+GPhl8/XiUQ4nwI3A==
+ fsid: ecbb8960-0e21-11e2-b495-83a88f44db01
+ monitor-secret: AQD1P2xQiKglDhAA4NGUF5j38Mhq56qwz+45wg==
{% if ubuntu.release == 'trusty' and os.release < 'newton' %}
source: "cloud:{{ ubuntu.release }}-updates/{{ os.release }}"
{% elif ubuntu.release == 'xenial' and os.release >= 'newton' %}
@@ -14,9 +27,6 @@
{% if os.network.ipv6 %}
prefer-ipv6: {{ os.network.ipv6 }}
{% endif %}
-{% if opnfv.spaces_dict.storage is defined %}
- #ceph-cluster-network: {{ opnfv.spaces_dict.storage.cidr }}
-{% endif %}
to:
{% if os.hyperconverged %}
{% for unit_id in to_select(unit_ceph_qty()) %}
@@ -44,6 +54,19 @@
{% else %}
num_units: 3
{% endif %}
+{% if os.service.bindings %}
+ bindings:
+{% if opnfv.spaces_dict.public is defined %}
+ public: public-api
+{% else %}
+ public: internal-api
+{% endif %}
+{% if opnfv.spaces_dict.storage is defined %}
+ cluster: cluster-stor
+{% else %}
+ cluster: internal-api
+{% endif %}
+{% endif %}
options:
osd-devices: {{ opnfv.storage_dict.ceph.disk }}
osd-reformat: 'yes'
@@ -96,7 +119,6 @@
{% endif %}
options:
region: {{ os.region }}
- use-embedded-webserver: true
operator-roles: "Member,admin"
{% if ubuntu.release == 'trusty' and os.release < 'newton' %}
source: "cloud:{{ ubuntu.release }}-updates/{{ os.release }}"