diff options
author | Narinder Gupta <narinder.gupta@canonical.com> | 2016-10-07 08:28:53 -0500 |
---|---|---|
committer | Narinder Gupta <narinder.gupta@canonical.com> | 2016-10-07 08:44:08 -0500 |
commit | d7321f8223363ac26878a22d1fd1f04c201732fe (patch) | |
tree | e7ac1553c766ea12040d908ee22f4666ef69fcf4 /ci/config_tpl/bundle_tpl/haclusters.yaml | |
parent | 18edc25759537951d6c5cdc3575c3d1b5c0d9fbc (diff) |
enabling heat cluster for experiment.
Change-Id: Id8192abb141596a2b6b5144447985f02d74b513f
Signed-off-by: Narinder Gupta <narinder.gupta@canonical.com>
Diffstat (limited to 'ci/config_tpl/bundle_tpl/haclusters.yaml')
-rw-r--r-- | ci/config_tpl/bundle_tpl/haclusters.yaml | 40 |
1 files changed, 35 insertions, 5 deletions
diff --git a/ci/config_tpl/bundle_tpl/haclusters.yaml b/ci/config_tpl/bundle_tpl/haclusters.yaml index fc42d38e..59493d5f 100644 --- a/ci/config_tpl/bundle_tpl/haclusters.yaml +++ b/ci/config_tpl/bundle_tpl/haclusters.yaml @@ -4,50 +4,80 @@ options: corosync_transport: unicast cluster_count: 3 +{% if os.network.ipv6 %} + prefer-ipv6: {{ os.network.ipv6 }} +{% endif %} hacluster-cinder: charm: "local:{{ ubuntu.release }}/hacluster" options: corosync_transport: unicast cluster_count: 3 -# hacluster-heat: -# charm: "local:{{ ubuntu.release }}/hacluster" -# options: -# corosync_transport: unicast -# cluster_count: 3 +{% if os.network.ipv6 %} + prefer-ipv6: {{ os.network.ipv6 }} +{% endif %} + hacluster-heat: + charm: "local:{{ ubuntu.release }}/hacluster" + options: + corosync_transport: unicast + cluster_count: 3 +{% if os.network.ipv6 %} + prefer-ipv6: {{ os.network.ipv6 }} +{% endif %} hacluster-horizon: charm: "local:{{ ubuntu.release }}/hacluster" options: corosync_transport: unicast cluster_count: 3 +{% if os.network.ipv6 %} + prefer-ipv6: {{ os.network.ipv6 }} +{% endif %} hacluster-nova: charm: "local:{{ ubuntu.release }}/hacluster" options: corosync_transport: unicast cluster_count: 3 +{% if os.network.ipv6 %} + prefer-ipv6: {{ os.network.ipv6 }} +{% endif %} hacluster-neutron: charm: "local:{{ ubuntu.release }}/hacluster" options: corosync_transport: unicast cluster_count: 3 +{% if os.network.ipv6 %} + prefer-ipv6: {{ os.network.ipv6 }} +{% endif %} hacluster-glance: charm: "local:{{ ubuntu.release }}/hacluster" options: corosync_transport: unicast cluster_count: 3 +{% if os.network.ipv6 %} + prefer-ipv6: {{ os.network.ipv6 }} +{% endif %} hacluster-ceilometer: charm: "local:{{ ubuntu.release }}/hacluster" options: corosync_transport: unicast cluster_count: 3 +{% if os.network.ipv6 %} + prefer-ipv6: {{ os.network.ipv6 }} +{% endif %} hacluster-mysql: charm: "local:{{ ubuntu.release }}/hacluster" options: corosync_transport: unicast cluster_count: 3 +{% if os.network.ipv6 %} + prefer-ipv6: {{ os.network.ipv6 }} +{% endif %} {% if os.beta.hacluster_ceph_radosgw %} hacluster-ceph-radosgw: charm: "local:{{ ubuntu.release }}/hacluster" options: corosync_transport: unicast cluster_count: 3 +{% if os.network.ipv6 %} + prefer-ipv6: {{ os.network.ipv6 }} +{% endif %} {% endif %} |