Merge "scenario001: enable IPv6 on centos7"

This commit is contained in:
Jenkins 2016-03-30 19:13:52 +00:00 committed by Gerrit Code Review
commit b3839c817e
2 changed files with 15 additions and 2 deletions

View File

@ -34,7 +34,7 @@ scenario](#All-In-One).
| - | scenario001 | scenario002 | scenario003 | scenario-aio |
|:----------:|:-----------:|:-----------:|:-----------:|:-------------:
| ssl | yes | yes | no | no |
| ipv6 | no | yes | no | no |
| ipv6 | centos7 | centos7 | no | no |
| keystone | X | X | X | X |
| glance | rbd | swift | file | file |
| nova | rbd | X | X | X |

View File

@ -14,9 +14,22 @@
# limitations under the License.
#
case $::osfamily {
'Debian': {
$ipv6 = false
}
'RedHat': {
$ipv6 = true
}
default: {
fail("Unsupported osfamily (${::osfamily})")
}
}
include ::openstack_integration
class { '::openstack_integration::config':
ssl => true,
ssl => true,
ipv6 => $ipv6,
}
include ::openstack_integration::cacert
include ::openstack_integration::rabbitmq