- update role to wait for enc_role - move hiera data to country/region/role specific location
11 lines
268 B
Puppet
11 lines
268 B
Puppet
# a role to deploy a mariadb galera node
|
|
class roles::infra::sql::galera {
|
|
include profiles::defaults
|
|
include profiles::base
|
|
include profiles::base::datavol
|
|
|
|
if $facts['enc_role'] == 'roles::infra::sql::galera' {
|
|
include profiles::sql::galera_member
|
|
}
|
|
}
|