Skip to content

Commit 4b8277e

Browse files
(PE-40377) move install step to correct position again
1 parent fa848fa commit 4b8277e

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/test-migration.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,16 @@ jobs:
9595
- name: Output contents of litmus_inventory.yaml
9696
run: |
9797
cat spec/fixtures/litmus_inventory.yaml
98+
- name: Install PE on test cluster
99+
timeout-minutes: 120
100+
run: |
101+
bundle exec bolt plan run peadm_spec::install_test_cluster \
102+
--inventoryfile spec/fixtures/litmus_inventory.yaml \
103+
--modulepath spec/fixtures/modules \
104+
architecture=${{ matrix.architecture }} \
105+
version=${{ matrix.version }} \
106+
console_password=${{ secrets.CONSOLE_PASSWORD }} \
107+
code_manager_auto_configure=true
98108
- name: Perform migration
99109
run: |
100110
echo ::group::prepare
@@ -116,16 +126,6 @@ jobs:
116126
new_primary_postgresql_host=$(yq -r '.groups[].targets[] | select(.vars.role == "new-primary-pdb-postgresql") | .name // ""' spec/fixtures/litmus_inventory.yaml) \
117127
new_replica_postgresql_host=$(yq -r '.groups[].targets[] | select(.vars.role == "new-replica-pdb-postgresql") | .name // ""' spec/fixtures/litmus_inventory.yaml) \
118128
--no-host-key-check
119-
- name: Install PE on test cluster
120-
timeout-minutes: 120
121-
run: |
122-
bundle exec bolt plan run peadm_spec::install_test_cluster \
123-
--inventoryfile spec/fixtures/litmus_inventory.yaml \
124-
--modulepath spec/fixtures/modules \
125-
architecture=${{ matrix.architecture }} \
126-
version=${{ matrix.version }} \
127-
console_password=${{ secrets.CONSOLE_PASSWORD }} \
128-
code_manager_auto_configure=true
129129
- name: Tear down PE ${{ matrix.architecture }} test cluster
130130
if: ${{ always() }}
131131
continue-on-error: true

spec/acceptance/peadm_spec/plans/provision_test_cluster.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
['primary', 'compiler', 'replica', 'compiler', 'new-primary', 'new-replica']
6868
}
6969
'extra-large-migration': {
70-
['primary', 'primary-pdb-postgresql', 'compiler']
70+
['primary', 'primary-pdb-postgresql', 'compiler', 'new-primary', 'new-primary-pdb-postgresql']
7171
}
7272
'extra-large-with-dr-migration': {
7373
['primary', 'primary-pdb-postgresql', 'compiler', 'replica', 'replica-pdb-postgresql', 'compiler', 'new-primary', 'new-replica', 'new-primary-pdb-postgresql', 'new-replica-pdb-postgresql']

0 commit comments

Comments
 (0)