Skip to content

Commit ab9db39

Browse files
ragingraNeil Anderson
andauthored
(PE-38653) Moving workflows install password to secrets (#481)
Co-authored-by: Neil Anderson <[email protected]>
1 parent 4a27e2d commit ab9db39

16 files changed

+35
-17
lines changed

.github/workflows/test-add-compiler.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,8 @@ jobs:
9797
--inventoryfile spec/fixtures/litmus_inventory.yaml \
9898
--modulepath spec/fixtures/modules \
9999
architecture=${{ matrix.architecture }} \
100-
version=${{ matrix.version }}
100+
version=${{ matrix.version }} \
101+
console_password=${{ secrets.CONSOLE_PASSWORD }}
101102
102103
- name: 'Run add_compiler plan'
103104
timeout-minutes: 30

.github/workflows/test-add-replica.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,8 @@ jobs:
9797
--inventoryfile spec/fixtures/litmus_inventory.yaml \
9898
--modulepath spec/fixtures/modules \
9999
architecture=${{ matrix.architecture }} \
100-
version=${{ matrix.version }}
100+
version=${{ matrix.version }} \
101+
console_password=${{ secrets.CONSOLE_PASSWORD }}
101102
102103
- name: 'Run add_replica plan'
103104
timeout-minutes: 30

.github/workflows/test-backup-restore-migration.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,8 @@ jobs:
9494
--inventoryfile spec/fixtures/litmus_inventory.yaml \
9595
--modulepath spec/fixtures/modules \
9696
architecture=${{ inputs.architecture }} \
97-
version=${{ inputs.version }}
97+
version=${{ inputs.version }} \
98+
console_password=${{ secrets.CONSOLE_PASSWORD }}
9899
99100
- name: "Start SSH session"
100101
if: github.event.inputs.ssh-debugging == 'true'
@@ -216,7 +217,8 @@ jobs:
216217
--inventoryfile spec/fixtures/litmus_inventory.yaml \
217218
--modulepath spec/fixtures/modules \
218219
architecture=${{ inputs.architecture }} \
219-
version=${{ inputs.version }}
220+
version=${{ inputs.version }} \
221+
console_password=${{ secrets.CONSOLE_PASSWORD }}
220222
221223
- name: Wait for backup to finish
222224
uses: lewagon/[email protected]

.github/workflows/test-backup-restore.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ jobs:
100100
--modulepath spec/fixtures/modules \
101101
architecture=${{ github.event.inputs.architecture || 'extra-large' }} \
102102
version=${{ github.event.inputs.version || '2023.5.0' }} \
103+
console_password=${{ secrets.CONSOLE_PASSWORD }} \
103104
--stream
104105
105106
- name: Perform peadm backup of cluster

.github/workflows/test-failover.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,8 @@ jobs:
100100
--inventoryfile spec/fixtures/litmus_inventory.yaml \
101101
--modulepath spec/fixtures/modules \
102102
architecture=${{ matrix.architecture }} \
103-
version=${{ matrix.version }}
103+
version=${{ matrix.version }} \
104+
console_password=${{ secrets.CONSOLE_PASSWORD }}
104105
105106
- name: 'Perform failover'
106107
run: |

.github/workflows/test-fips-install-matrix.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,8 @@ jobs:
102102
--modulepath spec/fixtures/modules \
103103
architecture=${{ matrix.architecture }} \
104104
version=${{ matrix.version }} \
105-
fips=${{ matrix.fips }}
105+
fips=${{ matrix.fips }} \
106+
console_password=${{ secrets.CONSOLE_PASSWORD }}
106107
107108
- name: "Tear down test cluster"
108109
if: ${{ always() }}

.github/workflows/test-install-latest-dev.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,8 @@ jobs:
111111
permit_unsafe_versions=true \
112112
download_mode="bolthost" \
113113
architecture=${{ matrix.architecture }} \
114-
pe_installer_source="https://artifactory.delivery.puppetlabs.net/artifactory/generic_enterprise__local/main/ci-ready/puppet-enterprise-${{ steps.latest.outputs.ver }}-el-8-x86_64.tar"
114+
pe_installer_source="https://artifactory.delivery.puppetlabs.net/artifactory/generic_enterprise__local/main/ci-ready/puppet-enterprise-${{ steps.latest.outputs.ver }}-el-8-x86_64.tar" \
115+
console_password=${{ secrets.CONSOLE_PASSWORD }}
115116
116117
- name: "Wait as long as the file ${HOME}/pause file is present"
117118
if: ${{ always() && github.event.inputs.ssh-debugging == 'true' }}

.github/workflows/test-install-latest-xlarge-dev-nightly.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,8 @@ jobs:
9797
permit_unsafe_versions=true \
9898
download_mode="bolthost" \
9999
architecture=${{ matrix.architecture }} \
100-
pe_installer_source="https://artifactory.delivery.puppetlabs.net/artifactory/generic_enterprise__local/main/ci-ready/puppet-enterprise-${{ steps.latest.outputs.ver }}-el-8-x86_64.tar"
100+
pe_installer_source="https://artifactory.delivery.puppetlabs.net/artifactory/generic_enterprise__local/main/ci-ready/puppet-enterprise-${{ steps.latest.outputs.ver }}-el-8-x86_64.tar" \
101+
console_password=${{ secrets.CONSOLE_PASSWORD }}
101102
102103
- name: "Wait as long as the file ${HOME}/pause file is present"
103104
if: ${{ always() && github.event.inputs.ssh-debugging == 'true' }}

.github/workflows/test-install-matrix.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,8 @@ jobs:
9999
--inventoryfile spec/fixtures/litmus_inventory.yaml \
100100
--modulepath spec/fixtures/modules \
101101
architecture=${{ matrix.architecture }} \
102-
version=${{ matrix.version }}
102+
version=${{ matrix.version }} \
103+
console_password=${{ secrets.CONSOLE_PASSWORD }}
103104
104105
- name: "Tear down test cluster"
105106
if: ${{ always() }}

.github/workflows/test-install-rhel-9.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,8 @@ jobs:
9898
--inventoryfile spec/fixtures/litmus_inventory.yaml \
9999
--modulepath spec/fixtures/modules \
100100
architecture=${{ matrix.architecture }} \
101-
version=${{ matrix.version }}
101+
version=${{ matrix.version }} \
102+
console_password=${{ secrets.CONSOLE_PASSWORD }}
102103
103104
- name: "Tear down test cluster"
104105
if: ${{ always() }}

0 commit comments

Comments
 (0)