
Currently idempotency in Ubuntu is broken because of the below change detected in collate in MySQL. ``` /Stage[main]/Keystone::Db::Mysql/Openstacklib::Db::Mysql[keystone]/ Mysql_database[keystone]/collate: collate changed 'utf8mb3_general_ci' to 'utf8_general_ci' ``` Similarly to what we observed in the past about charset[1], it seems MySQL in Ubuntu is automatically converting the collate value and that is causing the "unexpected" change detected in the 2nd puppet run. This fixes the idempotency by using utf8mb3_general_ci in Ubuntu to avoid the mismatch caused by internal translation. [1] 085d3569021441810c1dff7c8f4396003c690805 Change-Id: I56f31397669d3d7b08aa2e9808947141e003ab0b
67 lines
2.4 KiB
Puppet
67 lines
2.4 KiB
Puppet
class openstack_integration::mistral {
|
|
|
|
include openstack_integration::config
|
|
include openstack_integration::params
|
|
|
|
openstack_integration::mq_user { 'mistral':
|
|
password => 'an_even_bigger_secret',
|
|
before => Anchor['mistral::service::begin'],
|
|
}
|
|
if $::openstack_integration::config::ssl {
|
|
openstack_integration::ssl_key { 'mistral':
|
|
notify => Service['httpd'],
|
|
require => Package['mistral-common'],
|
|
}
|
|
Exec['update-ca-certificates'] ~> Service['httpd']
|
|
}
|
|
class { 'mistral::keystone::authtoken':
|
|
password => 'a_big_secret',
|
|
www_authenticate_uri => "${::openstack_integration::config::keystone_auth_uri}/v3",
|
|
auth_url => $::openstack_integration::config::keystone_auth_uri,
|
|
}
|
|
class { 'mistral::logging':
|
|
debug => true,
|
|
}
|
|
class { 'mistral::db':
|
|
database_connection => 'mysql+pymysql://mistral:mistral@127.0.0.1/mistral?charset=utf8',
|
|
}
|
|
class { 'mistral':
|
|
default_transport_url => os_transport_url({
|
|
'transport' => $::openstack_integration::config::messaging_default_proto,
|
|
'host' => $::openstack_integration::config::host,
|
|
'port' => $::openstack_integration::config::messaging_default_port,
|
|
'username' => 'mistral',
|
|
'password' => 'an_even_bigger_secret',
|
|
}),
|
|
rabbit_use_ssl => $::openstack_integration::config::ssl,
|
|
}
|
|
class { 'mistral::keystone::auth':
|
|
public_url => "${::openstack_integration::config::base_url}:8989/v2",
|
|
admin_url => "${::openstack_integration::config::base_url}:8989/v2",
|
|
internal_url => "${::openstack_integration::config::base_url}:8989/v2",
|
|
password => 'a_big_secret',
|
|
}
|
|
class { 'mistral::db::mysql':
|
|
charset => $::openstack_integration::params::mysql_charset,
|
|
collate => $::openstack_integration::params::mysql_collate,
|
|
password => 'mistral',
|
|
}
|
|
class { 'mistral::api':
|
|
service_name => 'httpd',
|
|
}
|
|
include apache
|
|
class { 'mistral::wsgi::apache':
|
|
bind_host => $::openstack_integration::config::ip_for_url,
|
|
ssl => $::openstack_integration::config::ssl,
|
|
ssl_key => "/etc/mistral/ssl/private/${::fqdn}.pem",
|
|
ssl_cert => $::openstack_integration::params::cert_path,
|
|
workers => 2,
|
|
threads => 1,
|
|
}
|
|
class { 'mistral::client': }
|
|
class { 'mistral::engine': }
|
|
class { 'mistral::executor': }
|
|
class { 'mistral::event_engine': }
|
|
|
|
}
|