
Turns out using Hiera as ENC is limited and you can't order the classes to be applied on a node. This change switched to the Roles/Profiles pattern and uses Hiera as ENC still, but only to assign which role a node belongs to
9 lines
307 B
Django/Jinja
9 lines
307 B
Django/Jinja
class infra-ansible::profiles::gerrit {
|
|
class { '::gerrit':
|
|
mysql_password => hiera('gerrit_mysql_password'),
|
|
gerrit_auth_type => 'DEVELOPMENT_BECOME_ANY_ACCOUNT',
|
|
war => 'http://tarballs.openstack.org/ci/gerrit/gerrit-v2.10.2.23.039a170.war',
|
|
secondary_index =>true
|
|
}
|
|
}
|