Skip to content

Commit 90fb3ce

Browse files
author
Gordon Byers
authored
Update ByoVnetCI.yml
1 parent bc25ce9 commit 90fb3ce

File tree

1 file changed

+18
-16
lines changed

1 file changed

+18
-16
lines changed

.github/workflows/ByoVnetCI.yml

+18-16
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ jobs:
462462
$AKSNAME='${{ steps.deployAks.outputs.AKSNAME}}'
463463
$AGNAME='${{ steps.deployAks.outputs.AGNAME}}'
464464
465-
write-output "AKS $AKSNAME"
465+
write-output "AKS $AKSNAME"
466466
write-output "AG $AGNAME"
467467
468468
write-output "Checking if ingressApplicationGateway is enabled"
@@ -481,10 +481,25 @@ jobs:
481481
482482
az role assignment list --assignee $agicobjid
483483
}
484-
484+
485+
SmokeTest_SimpleApp:
486+
needs: [Deploy]
487+
uses: azure/aks-construction/.github/workflows/AppDeploy_AzureVote.yml@gb-denyall
488+
#concurrency: "Ag-${{ inputs.AGNAME}}"
489+
with:
490+
RG: Automation-Actions-AksDeployCI #$RG
491+
AKSNAME: ${{needs.Deploy.outputs.AKSNAME}}
492+
AGNAME: ${{ needs.Deploy.outputs.AGNAME}}
493+
APPNAME: avote-public
494+
INGRESSTYPE: "AGIC-Public-Ingress"
495+
UNINSTALLAFTERVERIFY: ${{ github.event.inputs.doSmokeTestUninstall }}
496+
secrets:
497+
AZURE_CREDENTIALS: ${{ secrets.AZURE_CREDENTIALS }}
498+
485499
SmokeTest_JavaApp-certmgr:
486-
needs: [Deploy,SmokeTest_SimpleApp]
500+
needs: [Deploy]
487501
uses: azure/aks-construction/.github/workflows/[email protected]
502+
#concurrency: "Ag-${{ inputs.AGNAME}}"
488503
with:
489504
RG: Automation-Actions-AksDeployCI #'${{ env.RG }}' There seems to be an issue passing Env variables in reusable workflows
490505
AKSNAME: ${{needs.Deploy.outputs.AKSNAME}}
@@ -514,19 +529,6 @@ jobs:
514529
secrets:
515530
AZURE_CREDENTIALS: ${{ secrets.AZURE_CREDENTIALS }}
516531

517-
SmokeTest_SimpleApp:
518-
needs: [Deploy]
519-
uses: azure/aks-construction/.github/workflows/AppDeploy_AzureVote.yml@gb-denyall
520-
with:
521-
RG: Automation-Actions-AksDeployCI #$RG
522-
AKSNAME: ${{needs.Deploy.outputs.AKSNAME}}
523-
AGNAME: ${{ needs.Deploy.outputs.AGNAME}}
524-
APPNAME: avote-public
525-
INGRESSTYPE: "AGIC-Public-Ingress"
526-
UNINSTALLAFTERVERIFY: ${{ github.event.inputs.doSmokeTestUninstall }}
527-
secrets:
528-
AZURE_CREDENTIALS: ${{ secrets.AZURE_CREDENTIALS }}
529-
530532
DeployVerify:
531533
runs-on: ubuntu-latest
532534
needs: [Deploy]

0 commit comments

Comments
 (0)