
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
117 lines
3.9 KiB
Puppet
117 lines
3.9 KiB
Puppet
# Configure the Sahara service
|
|
#
|
|
# [*integration_enable*]
|
|
# (optional) Boolean to run integration tests.
|
|
# Defaults to true.
|
|
#
|
|
class openstack_integration::sahara (
|
|
$integration_enable = true,
|
|
){
|
|
|
|
include openstack_integration::config
|
|
include openstack_integration::params
|
|
|
|
if $::openstack_integration::config::ssl {
|
|
openstack_integration::ssl_key { 'sahara':
|
|
notify => Service['httpd'],
|
|
require => Package['sahara-api'],
|
|
}
|
|
Exec['update-ca-certificates'] ~> Service['httpd']
|
|
}
|
|
|
|
openstack_integration::mq_user { 'sahara':
|
|
password => 'an_even_bigger_secret',
|
|
before => Anchor['sahara::service::begin'],
|
|
}
|
|
|
|
class { 'sahara::db::mysql':
|
|
charset => $::openstack_integration::params::mysql_charset,
|
|
collate => $::openstack_integration::params::mysql_collate,
|
|
password => 'sahara',
|
|
}
|
|
|
|
class { 'sahara::keystone::auth':
|
|
public_url => "${::openstack_integration::config::base_url}:8386",
|
|
internal_url => "${::openstack_integration::config::base_url}:8386",
|
|
admin_url => "${::openstack_integration::config::base_url}:8386",
|
|
password => 'a_big_secret',
|
|
}
|
|
class { 'sahara::logging':
|
|
debug => true,
|
|
}
|
|
class { 'sahara::db':
|
|
database_connection => 'mysql+pymysql://sahara:sahara@127.0.0.1/sahara?charset=utf8',
|
|
}
|
|
class { 'sahara':
|
|
host => $::openstack_integration::config::host,
|
|
use_ssl => $::openstack_integration::config::ssl,
|
|
cert_file => $::openstack_integration::params::cert_path,
|
|
key_file => "/etc/sahara/ssl/private/${::fqdn}.pem",
|
|
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' => 'sahara',
|
|
'password' => 'an_even_bigger_secret',
|
|
}),
|
|
rabbit_use_ssl => $::openstack_integration::config::ssl,
|
|
amqp_sasl_mechanisms => 'PLAIN',
|
|
}
|
|
class { 'sahara::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,
|
|
}
|
|
$service_name = $::operatingsystem ? {
|
|
'Debian' => $::sahara::params::api_service_name,
|
|
default => 'httpd',
|
|
}
|
|
class { 'sahara::service::api':
|
|
service_name => $service_name,
|
|
}
|
|
if $service_name == 'httpd' {
|
|
include apache
|
|
class { 'sahara::wsgi::apache':
|
|
bind_host => $::openstack_integration::config::ip_for_url,
|
|
ssl => $::openstack_integration::config::ssl,
|
|
ssl_key => "/etc/sahara/ssl/private/${::fqdn}.pem",
|
|
ssl_cert => $::openstack_integration::params::cert_path,
|
|
workers => 2,
|
|
}
|
|
}
|
|
class { 'sahara::service::engine': }
|
|
class { 'sahara::client': }
|
|
class { 'sahara::notify': }
|
|
|
|
if $integration_enable {
|
|
# create simple sahara templates
|
|
sahara_node_group_template { 'master':
|
|
ensure => present,
|
|
plugin => 'vanilla',
|
|
plugin_version => '2.7.1',
|
|
flavor => 'm1.micro',
|
|
node_processes => [ 'namenode', 'resourcemanager' ],
|
|
}
|
|
|
|
sahara_node_group_template { 'worker':
|
|
ensure => present,
|
|
plugin => 'vanilla',
|
|
plugin_version => '2.7.1',
|
|
flavor => 'm1.micro',
|
|
node_processes => [ 'datanode', 'nodemanager' ],
|
|
}
|
|
|
|
sahara_cluster_template { 'cluster':
|
|
ensure => present,
|
|
node_groups => [ 'master:1', 'worker:2' ]
|
|
}
|
|
|
|
Nova_flavor<||> -> Sahara_node_group_template<||>
|
|
Class['sahara::keystone::auth'] -> Sahara_node_group_template<||>
|
|
Class['openstack_extras::auth_file'] -> Sahara_node_group_template<||>
|
|
}
|
|
}
|