Align the stars

CI is currently flacky / broken.
1. ubuntu: exclude test_create_show_delete_firewall from tempest
f2088f3b7b
This patch broke us when running Tempest with Ubuntu Ocata.
 File "/usr/lib/python2.7/dist-packages/neutron_fwaas/tests/tempest_plugin/tests/api/test_fwaas_extensions.py", line 102, in _wait_until_ready
 if not test.call_until_true(_wait, CONF.network.build_timeout,
AttributeError: 'module' object has no attribute 'call_until_true'
2. Start Designate services after RabbitMQ resources are ready
This makes sure Designate services can start correctly at first Puppet
run and make second Puppet run idempotent.
3. Disable vitrage which is unstable now, until we figure out what's
wrong with configuration. It seems related to auth parameters.
Change-Id: I84921cbf4f4f838bff4f970113e709181801bed9
This commit is contained in:
Emilien Macchi
2017年02月28日 22:34:55 -05:00
parent 1de27dc2d4
commit 05a6bba1af

View File

@@ -24,7 +24,8 @@ case $::osfamily {
'RedHat':{
$ipv6 = true
$enable_panko = true
$enable_vitrage = true
# TODO(EmilienM) enablevitrage again when it's stable
$enable_vitrage = false
}
default:{
fail("Unsupported osfamily (${::osfamily})")

View File

@@ -21,6 +21,8 @@ class openstack_integration::designate {
require => Class['::rabbitmq'],
}
Rabbitmq_user_permissions['designate@/']->Service<|tag=='designate-service'|>
class{ '::designate::db::mysql':
password => 'designate',
}

View File

@@ -275,7 +275,7 @@ if uses_debs; then
# TODO(aschultz): check this after ocata-m3 is published for UCA
# 1) this will disable the lbaas listeners tests for ubuntu only due to flakey
# failures
EXCLUDES="--regex=^(?!neutron_lbaas.tests.tempest.v2.api.test_listeners_.*admin.ListenersTestJSON.*$)(?!ceilometer.tests.tempest.api.test_telemetry_notification_api.TelemetryNotificationAPITest.test_check_glance_v2_notifications.*$).*"
EXCLUDES="--regex=^(?!neutron_lbaas.tests.tempest.v2.api.test_listeners_.*admin.ListenersTestJSON.*$)(?!neutron_fwaas.tests.tempest_plugin.tests.api.test_fwaas_extensions.*$)(?!ceilometer.tests.tempest.api.test_telemetry_notification_api.TelemetryNotificationAPITest.test_check_glance_v2_notifications.*$).*"
else
EXCLUDES="--regex=^(?!mistral_tempest_tests.tests.api.v2.test_executions.ExecutionTestsV2.test_get_list_executions.*$)(?!ceilometer.tests.tempest.api.test_telemetry_notification_api.TelemetryNotificationAPITest.test_check_glance_v2_notifications.*$).*"
fi
Reference in New Issue
openstack/puppet-openstack-integration
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.

The note is not visible to the blocked user.