diff options
author | Emilien Macchi <emilien@redhat.com> | 2016-01-13 13:04:22 -0500 |
---|---|---|
committer | Giulio Fidente <gfidente@redhat.com> | 2016-03-05 03:23:04 +0100 |
commit | 664df3372d9b922c08a1e893ee49632613cbcc6b (patch) | |
tree | 0745a8ef289742a7b41275f06ccd1cb47df6314c /environments | |
parent | 7981f69c034c5d08abade7f62161aeec65045814 (diff) |
Allow to enable IPv6 on Corosync
To enable IPv6 in Corosync, you'll need to set the --ipv6 parameter when
building the cluster.
To do so, we need to specify this parameter in puppet configuration when
running ::pacemaker::corosync class.
So we have now a new parameter: CorosyncIPv6 which is a boolean, False
by default. If set to True, it will pass right options to enable IPv6
when building the Pacemaker cluster.
Change-Id: I485f1399964ddd7a201ed19ec6580b8a136b3acd
Diffstat (limited to 'environments')
-rw-r--r-- | environments/network-isolation-v6.yaml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/environments/network-isolation-v6.yaml b/environments/network-isolation-v6.yaml index 8a3d806e..d1d0818e 100644 --- a/environments/network-isolation-v6.yaml +++ b/environments/network-isolation-v6.yaml @@ -43,6 +43,8 @@ resource_registry: OS::TripleO::BlockStorage::Ports::StorageMgmtPort: ../network/ports/storage_mgmt_v6.yaml parameter_defaults: + # Enable IPv6 for Corosync. This is required when Corosync is using an IPv6 IP in the cluster. + CorosyncIPv6: True # Enable IPv6 for MongoDB. This is required when MongoDB is using an IPv6 IP. MongoDbIPv6: True # Enable various IPv6 features in Nova. |