forked from johnsta/BikeSharingSampleApp
-
Notifications
You must be signed in to change notification settings - Fork 11
/
bikes-azure-pipelines.yml
214 lines (188 loc) · 6.96 KB
/
bikes-azure-pipelines.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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
# Deploy to Azure Kubernetes Service
# Build and push image to Azure Container Registry; Deploy to Azure Kubernetes Service
# https://docs.microsoft.com/azure/devops/pipelines/languages/docker
trigger:
branches:
include:
- master
paths:
include:
- Bikes/*
resources:
- repo: self
variables:
# Container registry service connection established during pipeline creation
dockerRegistryServiceConnection: 'df9d8a54-286b-47af-8f89-e423226944da'
imageRepository: 'bikes'
containerRegistry: 'builddemo.azurecr.io'
dockerfilePath: 'Bikes/Dockerfile'
tag: '$(Build.BuildId)'
# Kubernetes Namespace
# Kubernetes Namespace change to Master for main demo
k8sNamespace: 'atul'
k8sNamespaceforpr: $(system.pullRequest.sourceBranch)
imagePullSecret: 'builddemodfb0-auth'
AZDSDefaultSpace: 'master'
AZDSControllerName: 'build2019'
AZDSControllerRG: 'build2019'
stages:
- stage: Build
displayName: Build stage
jobs:
- job: Build
displayName: Build job
pool:
name: work-machine
steps:
- task: Docker@2
displayName: Build and push an image to container registry
inputs:
command: buildAndPush
repository: $(imageRepository)
dockerfile: $(dockerfilePath)
containerRegistry: $(dockerRegistryServiceConnection)
tags: |
$(tag)
- task: PublishPipelineArtifact@0
inputs:
artifactName: 'charts'
targetPath: 'Bikes/charts/bikes'
- stage: DeployToMaster
displayName: Deploy to Master
dependsOn: Build
condition: and(succeeded(), startsWith(variables['Build.SourceBranch'], 'refs/heads/'))
jobs:
- deployment: Deploy
displayName: Deploy job
pool:
name: work-machine
environment: 'BikeSharingSampleApp-Dev'
strategy:
runOnce:
deploy:
steps:
- task: DownloadPipelineArtifact@1
inputs:
artifactName: 'charts'
downloadPath: '$(System.ArtifactsDirectory)/charts'
- task: KubernetesManifest@0
displayName: Create imagePullSecret
inputs:
kubernetesServiceConnection: 'BikeSharingSampleApp'
action: createSecret
secretName: $(imagePullSecret)
namespace: $(k8sNamespace)
dockerRegistryEndpoint: $(dockerRegistryServiceConnection)
- task: KubernetesManifest@0
displayName: bake
name: bake
inputs:
action: bake
helmChart: '$(System.ArtifactsDirectory)/charts'
releaseName: bikesharing
overrides: |
image.tag:$(Build.BuildId)
buildID:"1"
- task: KubernetesManifest@0
displayName: deploy
name: deploy
inputs:
kubernetesServiceConnection: 'BikeSharingSampleApp'
action: deploy
namespace: $(k8sNamespace)
manifests: $(bake.manifestsBundle)
imagePullSecrets: $(imagePullSecret)
- stage: DeployPR
displayName: Deploy PR review app
dependsOn: Build
condition: and(succeeded(), startsWith(variables['Build.SourceBranch'], 'refs/pull/'))
jobs:
- deployment: Deploy
displayName: Deploy job
pool:
name: work-machine
environment: 'BikeSharing-PR'
strategy:
runOnce:
deploy:
steps:
- task: DownloadPipelineArtifact@1
inputs:
artifactName: 'charts'
downloadPath: '$(System.ArtifactsDirectory)/charts'
- task: Kubernetes@1
displayName: 'Create namespace'
inputs:
kubernetesServiceEndpoint: BikeSharingSampleApp
command: create
arguments: 'ns $(system.pullRequest.sourceBranch)'
checkLatest: true
- task: Kubernetes@1
displayName: 'Add devspace label'
inputs:
kubernetesServiceEndpoint: BikeSharingSampleApp
command: label
arguments: '--overwrite ns $(system.pullRequest.sourceBranch) azds.io/space=true'
checkLatest: true
- task: Kubernetes@1
displayName: 'Setup root devspace to master'
inputs:
kubernetesServiceEndpoint: BikeSharingSampleApp
command: label
arguments: '--overwrite ns $(system.pullRequest.sourceBranch) azds.io/parent-space=master'
checkLatest: true
- task: KubernetesManifest@0
displayName: Create imagePullSecret
inputs:
kubernetesServiceConnection: 'BikeSharingSampleApp'
action: createSecret
secretName: $(imagePullSecret)
namespace: $(k8sNamespaceforpr)
dockerRegistryEndpoint: $(dockerRegistryServiceConnection)
- task: KubernetesManifest@0
displayName: bake
name: bake
inputs:
action: bake
helmChart: '$(System.ArtifactsDirectory)/charts'
releaseName: bikesharing
overrides: |
image.tag:$(Build.BuildId)
buildID:"1"
- task: KubernetesManifest@0
displayName: deploy
name: deploy
inputs:
kubernetesServiceConnection: 'BikeSharingSampleApp'
action: deploy
namespace: $(k8sNamespaceforpr)
manifests: $(bake.manifestsBundle)
imagePullSecrets: $(imagePullSecret)
- task: AzureCLI@1
displayName: 'List all review app URLs'
inputs:
azureSubscription: 'Azure-Sub-Bike'
scriptLocation: inlineScript
inlineScript: |
azds controller select -n $(AZDSControllerName) -g $(AZDSControllerRG)
azds space select -n $(AZDSDefaultSpace)/$(system.pullRequest.sourceBranch) -y
azds list-uris -o json
azds list-uris -o json > $(AGENT.TEMPDIRECTORY)/azdsuri.txt
- powershell: |
$uriret = (Get-Content $(AGENT.TEMPDIRECTORY)/azdsuri.txt | Out-String | ConvertFrom-Json)[0].uri
Write-Host "##vso[task.setvariable variable=RETURI]$uriret"
Write-Host "$uriret"
displayName: 'Get PR review app url for the current PR'
- task: jikuma.devops-github-extension.custom-build-release-task.azuredevopsgithub@0
displayName: 'Write the PR review app details to GitHub'
name: UpdatePR
inputs:
gitHubConnection: 'GitHub'
body: |
{
"state": "success",
"target_url": "$(RETURI)",
"description": "available",
"context": "Dev Spaces review app"
}
githubrestapiurl: 'https://api.github.com/repos/$(BUILD.REPOSITORY.ID)/statuses/$(system.pullRequest.sourceCommitId)'