Skip to content

Commit 08c21d9

Browse files
btunguthangy
andauthored
Release/v2.4.0 (#43)
* fix: Update download URL of the Azure DevOps agent (#41) https://vstsagentpackage.azureedge.net has been deprecated in favour of https://download.agent.dev.azure.com Source: https://devblogs.microsoft.com/devops/cdn-domain-url-change-for-agents-in-pipelines/ * chore: Bump version to 2.4.0 and update Azure DevOps agent to 4.258.1 --------- Co-authored-by: hangy <[email protected]>
1 parent f9364f4 commit 08c21d9

File tree

5 files changed

+21
-6
lines changed

5 files changed

+21
-6
lines changed

Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ARG ARG_UBUNTU_BASE_IMAGE_TAG="20.04"
44
FROM ${ARG_UBUNTU_BASE_IMAGE}:${ARG_UBUNTU_BASE_IMAGE_TAG}
55
WORKDIR /azp
66
ARG ARG_TARGETARCH=linux-x64
7-
ARG ARG_VSTS_AGENT_VERSION=4.255.0
7+
ARG ARG_VSTS_AGENT_VERSION=4.258.1
88

99

1010
# To make it easier for build and release pipelines to run apt-get,
@@ -33,8 +33,7 @@ RUN apt-get update && apt-get -y upgrade
3333
# Download and extract the Azure DevOps Agent
3434
RUN printenv \
3535
&& echo "Downloading Azure DevOps Agent version ${ARG_VSTS_AGENT_VERSION} for ${ARG_TARGETARCH}"
36-
RUN curl -LsS https://vstsagentpackage.azureedge.net/agent/${ARG_VSTS_AGENT_VERSION}/vsts-agent-${ARG_TARGETARCH}-${ARG_VSTS_AGENT_VERSION}.tar.gz | tar -xz
37-
36+
RUN curl -LsS https://download.agent.dev.azure.com/agent/${ARG_VSTS_AGENT_VERSION}/vsts-agent-${ARG_TARGETARCH}-${ARG_VSTS_AGENT_VERSION}.tar.gz | tar -xz
3837

3938

4039
# Install Azure CLI & Azure DevOps extension

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ The table presented below outlines the correspondence between Helm chart version
2020

2121
| Helm Version | Docker Tag | Agent Version |
2222
| ------------ | --------------------- | ------------- |
23+
| 2.4.0 | v2.4.0-vsts-v2.258.1 | 4.258.1 |
2324
| 2.3.0 | v2.3.0-vsts-v2.255.0 | 4.255.0 |
2425
| 2.2.0 | 4.251.0-stable-v2.2.0 | 4.251.0 |
2526
| 2.1.1 | 3.248.0-stable-v2.1.0 | 3.248.0 |
@@ -30,6 +31,13 @@ The table presented below outlines the correspondence between Helm chart version
3031

3132
## Important Release Notes
3233

34+
### 2.4.0
35+
36+
With the **2.4.0 release**, the helm chart has been updated to use the latest Azure DevOps agent version **4.258.1**.
37+
38+
- :white_check_mark: [fix: Update download URL of the Azure DevOps agent](https://github.com/btungut/azure-devops-agent-on-kubernetes/pull/41)
39+
- :white_check_mark: Upgrade VSTS agent to **4.258.1**
40+
3341
### 2.3.0
3442

3543
With the **2.3.0 release**, the helm chart has been updated to use the latest Azure DevOps agent version **4.255.0** and `git-lfs` support has been added.

chart/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: azure-devops-agent
33
description: Dockerized Azure DevOps build agent on Kubernetes
44
type: application
5-
version: 2.3.0
6-
appVersion: "v2.3.0-vsts-v2.255.0"
5+
version: 2.4.0
6+
appVersion: "v2.4.0-vsts-v2.258.1"
77
keywords:
88
- azure devops
99
- build agent

chart/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ The table presented below outlines the correspondence between Helm chart version
1616

1717
| Helm Version | Docker Tag | Agent Version |
1818
| ------------ | --------------------- | ------------- |
19+
| 2.4.0 | v2.4.0-vsts-v2.258.1 | 4.258.1 |
1920
| 2.3.0 | v2.3.0-vsts-v2.255.0 | 4.255.0 |
2021
| 2.2.0 | 4.251.0-stable-v2.2.0 | 4.251.0 |
2122
| 2.1.1 | 3.248.0-stable-v2.1.0 | 3.248.0 |
@@ -26,6 +27,13 @@ The table presented below outlines the correspondence between Helm chart version
2627

2728
## Important Release Notes
2829

30+
### 2.4.0
31+
32+
With the **2.4.0 release**, the helm chart has been updated to use the latest Azure DevOps agent version **4.258.1**.
33+
34+
- :white_check_mark: [fix: Update download URL of the Azure DevOps agent](https://github.com/btungut/azure-devops-agent-on-kubernetes/pull/41)
35+
- :white_check_mark: Upgrade VSTS agent to **4.258.1**
36+
2937
### 2.3.0
3038

3139
With the **2.3.0 release**, the helm chart has been updated to use the latest Azure DevOps agent version **4.255.0** and `git-lfs` support has been added.

chart/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ image:
3030
# registry: docker.io
3131
repository: btungut/azure-devops-agent
3232
pullPolicy: IfNotPresent
33-
tag: "v2.3.0-vsts-v2.255.0"
33+
tag: "v2.4.0-vsts-v2.258.1"
3434
pullSecrets: []
3535

3636

0 commit comments

Comments
 (0)