-
Notifications
You must be signed in to change notification settings - Fork 96
118 lines (97 loc) · 3.62 KB
/
azure-ipam-testing.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
name: Azure IPAM Testing
# permissions:
# id-token: write
# contents: read
run-name: Azure IPAM Deployment & Testing
on:
push:
branches: [ github-actions ]
pull_request:
branches: [ main ]
env:
IPAM_UI_ID: ipam-ui-${{ github.run_id }}-${{ github.run_attempt }}
IPAM_ENGINE_ID: ipam-engine-${{ github.run_id }}-${{ github.run_attempt }}
jobs:
deploy:
runs-on: ubuntu-latest
outputs:
ipamUIAppId: ${{ steps.pwshScript.outputs.ipamUIAppId }}
ipamEngineAppId: ${{ steps.pwshScript.outputs.ipamEngineAppId }}
ipamSuffix: ${{ steps.pwshScript.outputs.ipamSuffix }}
ipamResourceGroup: ${{ steps.pwshScript.outputs.ipamResourceGroup }}
steps:
- run: echo "Job triggered by a ${{ github.event_name }} event from ${{ github.head_ref }} to main."
- name: Install Deployment Prerequisites
shell: pwsh
run: |
Set-PSRepository PSGallery -InstallationPolicy Trusted
Install-Module Az, Microsoft.Graph -Force
# - name: "Azure Login"
# uses: azure/login@v1
# with:
# client-id: ${{ secrets.AZURE_CLIENT_ID }}
# subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
# tenant-id: ${{ secrets.AZURE_TENANT_ID }}
# enable-AzPSSession: true
- name: "Azure Login"
uses: azure/login@v1
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}
enable-AzPSSession: true
- name: Checkout Azure IPAM Code
uses: actions/checkout@v3
- name: Deploy Azure IPAM
working-directory: "deploy"
id: "pwshScript"
shell: pwsh
run: ./deploy.ps1 -Location "westus3" -UIAppName $Env:IPAM_UI_ID -EngineAppName $Env:IPAM_ENGINE_ID
- name: "Output PowerShell Value 'ipamSuffix'"
run: echo "${{ steps.pwshScript.outputs.ipamSuffix }}"
- name: "Upload Logs"
working-directory: "logs"
shell: pwsh
run: |
$dateStamp = (Get-Date -UFormat "%Y-%m-%d_%I-%M-%S_%p").tostring()
$archiveName = "ipam-${dateStamp}.zip"
Compress-Archive -Pat ./* -DestinationPath /tmp/$archiveName
$storage = Get-AzStorageAccount -Name "ipamghactionlogs" -ResourceGroupName "Logging-RG"
$context = $storage.Context
$uploadDetails = @{
File = "/tmp/$archiveName"
Container = "deploy-logs"
Blob = $archiveName
Context = $context
StandardBlobTier = "Hot"
}
Set-AzStorageBlobContent @uploadDetails
- run: echo "${{ github.job }} status is ${{ job.status }}."
sleep:
runs-on: ubuntu-latest
needs: deploy
steps:
- name: "Test Sleepy Time"
run: |
echo "Time: $(date +'%T')"
echo "Sleeping for 30 seconds"
sleep 30
echo "Time: $(date +'%T')"
cleanup:
runs-on: ubuntu-latest
needs: [ deploy, sleep ]
steps:
- name: Install Deployment Prerequisites
shell: pwsh
run: |
Set-PSRepository PSGallery -InstallationPolicy Trusted
Install-Module Az -Force
- name: "Azure Login"
uses: azure/login@v1
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}
enable-AzPSSession: true
- name : "Cleanup Azure IPAM Deployment"
shell: pwsh
run: |
Remove-AzResourceGroup -Name ${{ needs.deploy.outputs.ipamResourceGroup }} -Force
Get-AzADApplication -ApplicationId ${{ needs.deploy.outputs.ipamUIAppId }} | Remove-AzADApplication
Get-AzADApplication -ApplicationId ${{ needs.deploy.outputs.ipamEngineAppId }} | Remove-AzADApplication