Skip to content

Commit

Permalink
Update ByoVnetCI.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Gordon Byers authored Jan 7, 2022
1 parent bc25ce9 commit 90fb3ce
Showing 1 changed file with 18 additions and 16 deletions.
34 changes: 18 additions & 16 deletions .github/workflows/ByoVnetCI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ jobs:
$AKSNAME='${{ steps.deployAks.outputs.AKSNAME}}'
$AGNAME='${{ steps.deployAks.outputs.AGNAME}}'
write-output "AKS $AKSNAME"
write-output "AKS $AKSNAME"
write-output "AG $AGNAME"
write-output "Checking if ingressApplicationGateway is enabled"
Expand All @@ -481,10 +481,25 @@ jobs:
az role assignment list --assignee $agicobjid
}
SmokeTest_SimpleApp:
needs: [Deploy]
uses: azure/aks-construction/.github/workflows/AppDeploy_AzureVote.yml@gb-denyall
#concurrency: "Ag-${{ inputs.AGNAME}}"
with:
RG: Automation-Actions-AksDeployCI #$RG
AKSNAME: ${{needs.Deploy.outputs.AKSNAME}}
AGNAME: ${{ needs.Deploy.outputs.AGNAME}}
APPNAME: avote-public
INGRESSTYPE: "AGIC-Public-Ingress"
UNINSTALLAFTERVERIFY: ${{ github.event.inputs.doSmokeTestUninstall }}
secrets:
AZURE_CREDENTIALS: ${{ secrets.AZURE_CREDENTIALS }}

SmokeTest_JavaApp-certmgr:
needs: [Deploy,SmokeTest_SimpleApp]
needs: [Deploy]
uses: azure/aks-construction/.github/workflows/AppDeploy_JavaApp.yml@0.3.1
#concurrency: "Ag-${{ inputs.AGNAME}}"
with:
RG: Automation-Actions-AksDeployCI #'${{ env.RG }}' There seems to be an issue passing Env variables in reusable workflows
AKSNAME: ${{needs.Deploy.outputs.AKSNAME}}
Expand Down Expand Up @@ -514,19 +529,6 @@ jobs:
secrets:
AZURE_CREDENTIALS: ${{ secrets.AZURE_CREDENTIALS }}

SmokeTest_SimpleApp:
needs: [Deploy]
uses: azure/aks-construction/.github/workflows/AppDeploy_AzureVote.yml@gb-denyall
with:
RG: Automation-Actions-AksDeployCI #$RG
AKSNAME: ${{needs.Deploy.outputs.AKSNAME}}
AGNAME: ${{ needs.Deploy.outputs.AGNAME}}
APPNAME: avote-public
INGRESSTYPE: "AGIC-Public-Ingress"
UNINSTALLAFTERVERIFY: ${{ github.event.inputs.doSmokeTestUninstall }}
secrets:
AZURE_CREDENTIALS: ${{ secrets.AZURE_CREDENTIALS }}

DeployVerify:
runs-on: ubuntu-latest
needs: [Deploy]
Expand Down

0 comments on commit 90fb3ce

Please sign in to comment.