Emilien Macchi 591f3c7c1f scenario004: disable watcher
Watcher introduced a new dependency with:
a015af1bd2

But RDO doesn't have any package for Monasca yet.
Let's disable Watcher until packages are built in RDO and dependencies
are fixed.

Change-Id: I321e7830aa3a94e23dac422470ba98a63a666fab
2017-01-16 13:41:48 -05:00

67 lines
1.9 KiB
Puppet

#
# Copyright 2016 Red Hat, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Disable SSL (workaround for Xenial)
if $::operatingsystem == 'Ubuntu' {
$ssl_enabled = false
$ipv6 = false
# Watcher packages are not available in Ubuntu repository.
$watcher_enabled = false
} else {
$ssl_enabled = true
$ipv6 = true
# Re-enable Watcher when monascaclient is packaged in RDO and
# added to Watcher dependencies.
$watcher_enabled = false
}
include ::openstack_integration
class { '::openstack_integration::config':
ssl => $ssl_enabled,
ipv6 => $ipv6,
}
include ::openstack_integration::cacert
include ::openstack_integration::memcached
include ::openstack_integration::rabbitmq
include ::openstack_integration::mysql
class { '::openstack_integration::keystone':
token_provider => 'fernet',
}
class { '::openstack_integration::glance':
backend => 'swift',
}
include ::openstack_integration::neutron
class { '::openstack_integration::nova':
libvirt_rbd => true,
}
class { '::openstack_integration::ceph':
deploy_rgw => true,
swift_dropin => true,
}
if $watcher_enabled {
include ::openstack_integration::watcher
}
include ::openstack_integration::provision
# Don't test swift, radosgw won't pass the current tests
# Glance, nova, neutron are true by default.
class { '::openstack_integration::tempest':
watcher => $watcher_enabled,
}