bbac058ade
This update contains the following misc. config changes to support ansible bootstrap for system controller. Creates deps model for dcmanager and dcorch puppet modules. Creates a system controller postgres run time manifest which is applied upon the creation of initial controller host or replay after the distributed cloud role has been changed. The patch_vault file system is created during the first controller unlocked. And allows the dc role to be modified during bootstrap. Change-Id: Id7b416274b2a854c469bfdca7448bf1ddea639d7 Story: 2004766 Task: 35650 Signed-off-by: Tao Liu <tao.liu@windriver.com>
82 lines
2.2 KiB
Puppet
82 lines
2.2 KiB
Puppet
class platform::dcmanager::params (
|
|
$api_port = 8119,
|
|
$region_name = undef,
|
|
$domain_name = undef,
|
|
$domain_admin = undef,
|
|
$domain_pwd = undef,
|
|
$service_name = 'dcmanager',
|
|
$default_endpoint_type = 'internalURL',
|
|
$service_create = false,
|
|
) {
|
|
include ::platform::params
|
|
|
|
include ::platform::network::mgmt::params
|
|
$api_host = $::platform::network::mgmt::params::controller_address
|
|
}
|
|
|
|
|
|
class platform::dcmanager
|
|
inherits ::platform::dcmanager::params {
|
|
if $::platform::params::distributed_cloud_role =='systemcontroller' {
|
|
include ::platform::params
|
|
include ::platform::amqp::params
|
|
|
|
if $::platform::params::init_database {
|
|
include ::dcmanager::db::postgresql
|
|
}
|
|
|
|
class { '::dcmanager':
|
|
rabbit_host => $::platform::amqp::params::host_url,
|
|
rabbit_port => $::platform::amqp::params::port,
|
|
rabbit_userid => $::platform::amqp::params::auth_user,
|
|
rabbit_password => $::platform::amqp::params::auth_password,
|
|
}
|
|
}
|
|
}
|
|
|
|
class platform::dcmanager::haproxy
|
|
inherits ::platform::dcmanager::params {
|
|
if $::platform::params::distributed_cloud_role =='systemcontroller' {
|
|
platform::haproxy::proxy { 'dcmanager-restapi':
|
|
server_name => 's-dcmanager',
|
|
public_port => $api_port,
|
|
private_port => $api_port,
|
|
}
|
|
}
|
|
}
|
|
|
|
class platform::dcmanager::manager {
|
|
if $::platform::params::distributed_cloud_role =='systemcontroller' {
|
|
include ::dcmanager::manager
|
|
}
|
|
}
|
|
|
|
class platform::dcmanager::api
|
|
inherits ::platform::dcmanager::params {
|
|
if $::platform::params::distributed_cloud_role =='systemcontroller' {
|
|
if ($::platform::dcmanager::params::service_create and
|
|
$::platform::params::init_keystone) {
|
|
include ::dcmanager::keystone::auth
|
|
}
|
|
|
|
class { '::dcmanager::api':
|
|
bind_host => $api_host,
|
|
sync_db => $::platform::params::init_database,
|
|
}
|
|
|
|
|
|
include ::platform::dcmanager::haproxy
|
|
}
|
|
}
|
|
|
|
class platform::dcmanager::runtime {
|
|
if $::platform::params::distributed_cloud_role == 'systemcontroller' {
|
|
include ::platform::amqp::params
|
|
include ::dcmanager
|
|
include ::dcmanager::db::postgresql
|
|
class { '::dcmanager::api':
|
|
sync_db => str2bool($::is_standalone_controller),
|
|
}
|
|
}
|
|
}
|