We are observing the failure in Ubuntu integration job caused by
broken idempotency. It seems current mysql/mariadb in Ubuntu replaces
utf8 with uft8mb3 automatically and this behavior results in unexpected
change in second run.
This change ensures that we use utf8mb3 in Ubuntu to avoid such
mismatch caused by internal translation. Note this change is intended
to be a quick gate fix and the charset would be updated to utf8mb4
later.
Closes-Bug: #1929073
Change-Id: I7742120758057b5a00f1d093f355fda3791f4e02
(cherry picked from commit 085d356902)
110 lines
3.7 KiB
Puppet
110 lines
3.7 KiB
Puppet
class openstack_integration::vitrage {
|
|
|
|
include openstack_integration::config
|
|
include openstack_integration::params
|
|
|
|
openstack_integration::mq_user { 'vitrage':
|
|
password => 'an_even_bigger_secret',
|
|
before => Anchor['vitrage::service::begin'],
|
|
}
|
|
|
|
if $::openstack_integration::config::ssl {
|
|
openstack_integration::ssl_key { 'vitrage':
|
|
notify => Service['httpd'],
|
|
require => Package['vitrage'],
|
|
}
|
|
Exec['update-ca-certificates'] ~> Service['httpd']
|
|
}
|
|
|
|
class { 'vitrage::db::mysql':
|
|
charset => $::openstack_integration::params::mysql_charset,
|
|
password => 'vitrage',
|
|
}
|
|
|
|
class { 'vitrage::db':
|
|
database_connection => 'mysql+pymysql://vitrage:vitrage@127.0.0.1/vitrage?charset=utf8'
|
|
}
|
|
|
|
class { 'vitrage::db::sync': }
|
|
|
|
class { 'vitrage::logging':
|
|
debug => true,
|
|
}
|
|
|
|
class { 'vitrage':
|
|
# TODO(ansmith): separate transports when bug/1711716 closed
|
|
default_transport_url => os_transport_url({
|
|
'transport' => $::openstack_integration::config::messaging_notify_proto,
|
|
'host' => $::openstack_integration::config::host,
|
|
'port' => $::openstack_integration::config::messaging_notify_port,
|
|
'username' => 'vitrage',
|
|
'password' => 'an_even_bigger_secret',
|
|
}),
|
|
notification_transport_url => os_transport_url({
|
|
'transport' => $::openstack_integration::config::messaging_notify_proto,
|
|
'host' => $::openstack_integration::config::host,
|
|
'port' => $::openstack_integration::config::messaging_notify_port,
|
|
'username' => 'vitrage',
|
|
'password' => 'an_even_bigger_secret',
|
|
}),
|
|
rabbit_use_ssl => $::openstack_integration::config::ssl,
|
|
amqp_sasl_mechanisms => 'PLAIN',
|
|
snapshots_interval => 120,
|
|
types => 'nova.host,nova.instance,nova.zone,cinder.volume,neutron.port,neutron.network,doctor',
|
|
notification_driver => 'messagingv2',
|
|
}
|
|
|
|
# Make sure tempest can read the configuration files
|
|
# default installation has a 640 premission
|
|
-> file { '/etc/vitrage':
|
|
ensure => directory,
|
|
recurse => true,
|
|
mode => '0644',
|
|
}
|
|
|
|
# Make sure tempest can write to the log directory
|
|
# default installation has a 755 premission
|
|
-> file { '/var/log/vitrage':
|
|
ensure => directory,
|
|
mode => '0766',
|
|
}
|
|
|
|
class { 'vitrage::keystone::auth':
|
|
public_url => "${::openstack_integration::config::base_url}:8999",
|
|
internal_url => "${::openstack_integration::config::base_url}:8999",
|
|
admin_url => "${::openstack_integration::config::base_url}:8999",
|
|
password => 'a_big_secret',
|
|
}
|
|
class { 'vitrage::keystone::authtoken':
|
|
password => 'a_big_secret',
|
|
user_domain_name => 'Default',
|
|
project_domain_name => 'Default',
|
|
auth_url => $::openstack_integration::config::keystone_admin_uri,
|
|
www_authenticate_uri => $::openstack_integration::config::keystone_auth_uri,
|
|
memcached_servers => $::openstack_integration::config::memcached_servers,
|
|
}
|
|
class { 'vitrage::api':
|
|
enabled => true,
|
|
service_name => 'httpd',
|
|
}
|
|
include apache
|
|
class { 'vitrage::wsgi::apache':
|
|
bind_host => $::openstack_integration::config::ip_for_url,
|
|
ssl => $::openstack_integration::config::ssl,
|
|
ssl_key => "/etc/vitrage/ssl/private/${::fqdn}.pem",
|
|
ssl_cert => $::openstack_integration::params::cert_path,
|
|
workers => 2,
|
|
}
|
|
class { 'vitrage::auth':
|
|
auth_url => $::openstack_integration::config::keystone_auth_uri,
|
|
auth_password => 'a_big_secret',
|
|
}
|
|
class { 'vitrage::graph': }
|
|
class { 'vitrage::notifier':
|
|
notifiers => ['nova'],
|
|
}
|
|
class { 'vitrage::persistor': }
|
|
class { 'vitrage::client': }
|
|
|
|
}
|