Skip to content

Commit 563ed6c

Browse files
authored
[IT-4720] revert to sceptre parallel deploy (#1503)
We changed Sceptre to deploy service catalog cloudformation templates serially in PR #1498 to get around an AWS throttling issue. AWS has confirmed that a change on their end caused this problem and they have reverted their change. From that we are reverting our change so that we can deploy cloudformation in parallel again.
1 parent 96a12fc commit 563ed6c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/deploy.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ jobs:
118118
role-to-assume: "arn:aws:iam::465877038949:role/sagebase-github-oidc-sage-bionetworks-it"
119119
working-dir: "sceptre/scipool"
120120
role-session-name: ${{ needs.org-formation.outputs.role-session-name }}
121-
sceptre-command: "sceptre launch develop --prune --yes --max-concurrency 1"
121+
sceptre-command: "sceptre launch develop --prune --yes"
122122
sceptre-scipoolprod:
123123
needs: [org-formation]
124124
uses: "./.github/workflows/aws-scipool.yaml"
@@ -127,7 +127,7 @@ jobs:
127127
role-to-assume: "arn:aws:iam::237179673806:role/sagebase-github-oidc-sage-bionetworks-it"
128128
role-session-name: ${{ needs.org-formation.outputs.role-session-name }}
129129
working-dir: "sceptre/scipool"
130-
sceptre-command: "sceptre launch prod --prune --yes --max-concurrency 1"
130+
sceptre-command: "sceptre launch prod --prune --yes"
131131
sceptre-stridespool:
132132
needs: [org-formation, sceptre-strides]
133133
uses: "./.github/workflows/aws-scipool.yaml"
@@ -136,15 +136,15 @@ jobs:
136136
role-to-assume: "arn:aws:iam::423819316185:role/github-oidc-sage-bionetworks-it"
137137
role-session-name: ${{ needs.org-formation.outputs.role-session-name }}
138138
working-dir: "sceptre/scipool"
139-
sceptre-command: "sceptre launch strides --prune --yes --max-concurrency 1"
139+
sceptre-command: "sceptre launch strides --prune --yes"
140140
sceptre-sageit-staging:
141141
needs: [org-formation]
142142
uses: "./.github/workflows/aws-deploy.yaml"
143143
with:
144144
role-to-assume: "arn:aws:iam::797640923903:role/sagebase-github-oidc-sage-bionetworks-it"
145145
role-session-name: ${{ needs.org-formation.outputs.role-session-name }}
146146
working-dir: "sceptre/sageit"
147-
sceptre-command: "sceptre launch staging --prune --yes --max-concurrency 1"
147+
sceptre-command: "sceptre launch staging --prune --yes"
148148
sceptre-sageit-prod:
149149
needs: [org-formation]
150150
uses: "./.github/workflows/aws-deploy.yaml"

0 commit comments

Comments
 (0)