Skip to content

Commit aef497d

Browse files
committed
(CAT-2052) Fix nightlies
(CAT-2052) Fix nightlies (CAT-2052) updated workflow (CAT-2052) Update enforcing mode
1 parent ea51a7e commit aef497d

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
5353
- name: Run provision Tests
5454
run: |
55-
bundle exec bolt --tmpdir /tmp --modulepath spec/fixtures/modules -i $INVENTORY_PATH plan run satellite_pe_tools::test_03_test_run --stream
55+
bundle exec bolt --tmpdir /tmp --log-level debug --modulepath spec/fixtures/modules -i $INVENTORY_PATH plan run satellite_pe_tools::test_03_test_run --stream
5656
5757
- name: Run Integration tests
5858
run: |

config/scripts/install_satellite.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,7 @@ if ! [ -d /opt/satellite ]; then
1010

1111
puppet agent -t
1212

13+
setenforce 0
1314
satellite-installer --scenario satellite --enable-puppet --enable-foreman-cli-puppet --foreman-initial-admin-password "puppetlabs" --tuning development -l DEBUG
15+
setenforce 1
1416
fi

plans/test_01_provision.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plan satellite_pe_tools::test_01_provision(
22
) {
33
# provision server machine, set role
4-
run_task('provision::provision_service', 'localhost', action => 'provision', platform => 'centos-stream-8', vars => 'role: pe')
4+
run_task('provision::provision_service', 'localhost', action => 'provision', platform => 'centos-stream-9', vars => 'role: pe')
55
# provision satellite
66
run_task('provision::provision_service', 'localhost', action => 'provision', platform => 'rhel-8', vars => 'role: satellite')
77
}

plans/test_02_server_setup.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
'password' => 'puppetlabs',
99
'configure_tuning' => false,
1010
},
11-
'version' => '2021.7.4',
11+
'version' => '2021.7.6',
1212
}
1313
run_plan('deploy_pe::provision_master', $server, $params)
1414
}

0 commit comments

Comments
 (0)