Skip to content

Commit df6839f

Browse files
[Pipeline] Fix ordering of AIO deployment steps (#798)
From some guidance from the Akri folks, we should be only be deploying Akri _after_ we have fully deployed our AIO bits including any TLS certs. This is something that may be the cause of our frequent Akri helm installation failures
1 parent 68e61db commit df6839f

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/actions/configure-aio/action.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,20 @@ runs:
4343
- name: Install AIO
4444
uses: ./action-deploy
4545
with:
46-
akri: 2504
46+
install_aio: "true"
47+
install_akri: "false"
4748

4849
- name: Configure AIO
4950
run: tools/deployment/configure-aio.sh
5051
shell: bash
5152

53+
- name: Install Akri
54+
uses: ./action-deploy
55+
with:
56+
akri: 2504
57+
install_aio: "false"
58+
install_akri: "true"
59+
5260
- name: Setup .NET
5361
if: inputs.install-dotnet == 'true'
5462
uses: actions/setup-dotnet@v4

0 commit comments

Comments
 (0)