Skip to content

Commit 1134652

Browse files
authored
(MAINT) CI fix, PE console requires a minimum password of 12 characters (#436)
1 parent a99cb66 commit 1134652

File tree

16 files changed

+24
-24
lines changed

16 files changed

+24
-24
lines changed

examples/provision/extra-large-ha.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"version": "2021.7.0",
3-
"console_password": "puppetlabs",
3+
"console_password": "puppetLabs123!",
44
"primary_host": "pe-master-1830cd-0.us-west1-a.c.reidmv-peadm.internal",
55
"replica_host": "pe-master-1830cd-1.us-west1-b.c.reidmv-peadm.internal",
66
"primary_postgresql_host": "pe-psql-1830cd-0.us-west1-a.c.reidmv-peadm.internal",

examples/provision/extra-large.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"version": "2021.7.0",
3-
"console_password": "puppetlabs",
3+
"console_password": "puppetLabs123!",
44
"primary_host": "pe-master-1830cd-0.us-west1-a.c.reidmv-peadm.internal",
55

66
"primary_postgresql_host": "pe-psql-1830cd-0.us-west1-a.c.reidmv-peadm.internal",

examples/provision/large-ha.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"version": "2021.7.0",
3-
"console_password": "puppetlabs",
3+
"console_password": "puppetLabs123!",
44
"primary_host": "pe-master-1830cd-0.us-west1-a.c.reidmv-peadm.internal",
55
"replica_host": "pe-master-1830cd-1.us-west1-b.c.reidmv-peadm.internal",
66

examples/provision/large.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"version": "2021.7.0",
3-
"console_password": "puppetlabs",
3+
"console_password": "puppetLabs123!",
44
"primary_host": "pe-master-1830cd-0.us-west1-a.c.reidmv-peadm.internal",
55

66

examples/provision/minimal.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"version": "2021.7.0",
3-
"console_password": "puppetlabs",
3+
"console_password": "puppetLabs123!",
44
"primary_host": "pe-master-1830cd-0.us-west1-a.c.reidmv-peadm.internal"
55
}

examples/provision/standard-ha.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"version": "2021.7.0",
3-
"console_password": "puppetlabs",
3+
"console_password": "puppetLabs123!",
44
"primary_host": "pe-master-1830cd-0.us-west1-a.c.reidmv-peadm.internal",
55
"replica_host": "pe-master-1830cd-1.us-west1-b.c.reidmv-peadm.internal",
66

examples/provision/standard.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"version": "2021.7.0",
3-
"console_password": "puppetlabs",
3+
"console_password": "puppetLabs123!",
44
"primary_host": "pe-master-1830cd-0.us-west1-a.c.reidmv-peadm.internal",
55

66

spec/acceptance/peadm_spec/plans/install_test_cluster.pp

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
}
2626

2727
$common_params = {
28-
console_password => 'puppetlabs',
28+
console_password => 'puppetLabs123!',
2929
download_mode => $download_mode,
3030
code_manager_auto_configure => $code_manager_auto_configure,
3131
version => $version,
@@ -35,28 +35,28 @@
3535

3636
$arch_params =
3737
case $architecture {
38-
'standard': { {
38+
'standard': {{
3939
primary_host => $t.filter |$n| { $n.vars['role'] == 'primary' },
4040
} }
41-
'standard-with-dr': { {
41+
'standard-with-dr': {{
4242
primary_host => $t.filter |$n| { $n.vars['role'] == 'primary' },
4343
replica_host => $t.filter |$n| { $n.vars['role'] == 'replica' },
4444
} }
45-
'large': { {
45+
'large': {{
4646
primary_host => $t.filter |$n| { $n.vars['role'] == 'primary' },
4747
compiler_hosts => $t.filter |$n| { $n.vars['role'] == 'compiler' },
4848
} }
49-
'large-with-dr': { {
49+
'large-with-dr': {{
5050
primary_host => $t.filter |$n| { $n.vars['role'] == 'primary' },
5151
replica_host => $t.filter |$n| { $n.vars['role'] == 'replica' },
5252
compiler_hosts => $t.filter |$n| { $n.vars['role'] == 'compiler' },
5353
} }
54-
'extra-large': { {
54+
'extra-large': {{
5555
primary_host => $t.filter |$n| { $n.vars['role'] == 'primary' },
5656
primary_postgresql_host => $t.filter |$n| { $n.vars['role'] == 'primary-pdb-postgresql' },
5757
compiler_hosts => $t.filter |$n| { $n.vars['role'] == 'compiler' },
5858
} }
59-
'extra-large-with-dr': { {
59+
'extra-large-with-dr': {{
6060
primary_host => $t.filter |$n| { $n.vars['role'] == 'primary' },
6161
primary_postgresql_host => $t.filter |$n| { $n.vars['role'] == 'primary-pdb-postgresql' },
6262
replica_host => $t.filter |$n| { $n.vars['role'] == 'replica' },

spec/docker/extra-large-ha/params.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"compiler_hosts": [
77
"pe-xl-compiler-0.puppet.vm"
88
],
9-
"console_password": "puppetlabs",
9+
"console_password": "puppetLabs123!",
1010
"dns_alt_names": [
1111
"puppet",
1212
"pe-xl-core-0.puppet.vm",

spec/docker/extra-large/params.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"compiler_hosts": [
55
"pe-xl-compiler-0.puppet.vm"
66
],
7-
"console_password": "puppetlabs",
7+
"console_password": "puppetLabs123!",
88
"dns_alt_names": [
99
"puppet",
1010
"pe-xl-core-0.puppet.vm"

0 commit comments

Comments
 (0)