Skip to content

Commit c0e0aaa

Browse files
committed
images
1 parent 905e282 commit c0e0aaa

File tree

8 files changed

+7
-7
lines changed

8 files changed

+7
-7
lines changed

articles/jenkins/jenkins-continuous-deployment.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ azure-vote-front LoadBalancer 10.0.215.27 40.117.57.239 80:30747/TCP 2
138138

139139
To see the application in action, open a web browser to the external IP address of your service. The Azure vote application is displayed, as shown in the following example:
140140

141-
![Azure sample vote application running in AKS](media/aks-jenkins/azure-vote.png)
141+
![Azure sample vote application running in AKS](media/jenkins-continuous-deployment/azure-vote.png)
142142

143143
## Deploy Jenkins to an Azure VM
144144

@@ -178,7 +178,7 @@ A Jenkins environment variable is used to hold the ACR login server name. This v
178178
- On the left-hand side of the Jenkins portal, select **Manage Jenkins** > **Configure System**
179179
- Under **Global Properties**, select **Environment variables**. Add a variable with the name `ACR_LOGINSERVER` and the value of your ACR login server.
180180

181-
![Jenkins environment variables](media/aks-jenkins/env-variables.png)
181+
![Jenkins environment variables](media/jenkins-continuous-deployment/env-variables.png)
182182

183183
- When complete, click **Save** at the bottom of the Jenkins configuration page.
184184

@@ -230,7 +230,7 @@ Ensure that the credential kind is **Username with password** and enter the foll
230230

231231
When complete, the credentials form looks like the following example:
232232

233-
![Create a Jenkins credential object with the service principal information](media/aks-jenkins/acr-credentials.png)
233+
![Create a Jenkins credential object with the service principal information](media/jenkins-continuous-deployment/acr-credentials.png)
234234

235235
Click **OK** and return to the Jenkins portal.
236236

@@ -247,7 +247,7 @@ From the home page of your Jenkins portal, select **New item** on the left-hand
247247
1. Under **Bindings**, select **Add** > **Username and password (separated)**
248248
- Enter `ACR_ID` for the **Username Variable**, and `ACR_PASSWORD` for the **Password Variable**
249249

250-
![Jenkins bindings](media/aks-jenkins/bindings.png)
250+
![Jenkins bindings](media/jenkins-continuous-deployment/bindings.png)
251251

252252
1. Choose to add a **Build Step** of type **Execute shell** and use the following text. This script builds a new container image and pushes it to your ACR registry.
253253

@@ -275,7 +275,7 @@ Before you automate the job based on GitHub commits, first manually test the Jen
275275

276276
On the left-hand menu of the project, select **Build Now**.
277277

278-
![Jenkins test build](media/aks-jenkins/test-build.png)
278+
![Jenkins test build](media/jenkins-continuous-deployment/test-build.png)
279279

280280
The first build takes a minute or two as the Docker image layers are pulled down to the Jenkins server. Subsequent builds can use the cached image layers to improve the build times.
281281

@@ -292,7 +292,7 @@ With a successful manual build complete, now integrate GitHub into the Jenkins b
292292
1. Choose to **Add webhook**. For the *Payload URL*, enter `http://<publicIp:8080>/github-webhook/`, where `<publicIp>` is the IP address of the Jenkins server. Make sure to include the trailing /. Leave the other defaults for content type and to trigger on *push* events.
293293
1. Select **Add webhook**.
294294

295-
![Create a GitHub webhook for Jenkins](media/aks-jenkins/webhook.png)
295+
![Create a GitHub webhook for Jenkins](media/jenkins-continuous-deployment/webhook.png)
296296

297297
## Test the complete CI/CD pipeline
298298

@@ -318,7 +318,7 @@ When updated, save the file, commit the changes, and push these to your fork of
318318

319319
Once the build is complete, refresh your web browser of the sample Azure vote application. Your changes are displayed, as shown in the following example:
320320

321-
![Sample Azure vote in AKS updated by the Jenkins build job](media/aks-jenkins/azure-vote-updated.png)
321+
![Sample Azure vote in AKS updated by the Jenkins build job](media/jenkins-continuous-deployment/azure-vote-updated.png)
322322

323323
## Next steps
324324

0 commit comments

Comments
 (0)