Skip to content

Commit d324965

Browse files
committed
fix: Update appVersion and image tag to v2.3.0-vsts-v2.255.0
1 parent 1120f27 commit d324965

File tree

3 files changed

+23
-16
lines changed

3 files changed

+23
-16
lines changed

chart/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: azure-devops-agent
33
description: Dockerized Azure DevOps build agent on Kubernetes
44
type: application
55
version: 2.3.0
6-
appVersion: "4.251.0-stable-v2.3.0"
6+
appVersion: "v2.3.0-vsts-v2.255.0"
77
keywords:
88
- azure devops
99
- build agent

chart/README.md

Lines changed: 21 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,16 @@ With the **2.3.0 release**, the helm chart has been updated to use the latest Az
3232

3333
- :white_check_mark: [Upgrade VSTS agent to 4.255.0](https://github.com/btungut/azure-devops-agent-on-kubernetes/pull/38)
3434
- :white_check_mark: [Add git-lfs support](https://github.com/btungut/azure-devops-agent-on-kubernetes/pull/37)
35+
- :white_check_mark: [BREAKING CHANGE: Change container resources requests and limits to NULL / empty / `{}`](https://github.com/btungut/azure-devops-agent-on-kubernetes/pull/39)
36+
37+
38+
#### IMPORTANT & BREAKING CHANGE
39+
40+
- The values of **requests and limits for the container resources** have been changed from specific values to NULL / empty / `{}`.
41+
42+
> This means that the container will use the default values of the Kubernetes cluster for CPU and memory resources. Please make sure to adjust the values according to your needs if you want to set specific values for CPU and memory resources.
43+
44+
**To see the changes**, please visit the [values.yaml changes for PR 39](https://github.com/btungut/azure-devops-agent-on-kubernetes/pull/39/files)
3545

3646
### 2.2.0
3747

@@ -226,20 +236,17 @@ volumeMounts:
226236

227237
### Other parameters
228238

229-
| Name | Description | Value |
230-
| --------------------------- | ------------------------------------- | ---------------------------- |
231-
| `image.registry` | Azure DevOps agent image registry | `docker.io` |
232-
| `image.repository` | Azure DevOps agent image repository | `btungut/azure-devops-agent` |
233-
| `image.tag` | Azure DevOps agent image tag | refer to values.yaml |
234-
| `image.pullPolicy` | Azure DevOps agent image pull policy | `IfNotPresent` |
235-
| `image.pullSecrets` | Azure DevOps agent image pull secrets | `[]` |
236-
| `replicaCount` | Replica count for deployment | `1` |
237-
| `resources.requests.cpu` | CPU request value for scheduling | `"100m"` |
238-
| `resources.requests.memory` | Memory request value for scheduling | `"128Mi"` |
239-
| `resources.limits.cpu` | CPU limit value for scheduling | `"500m"` |
240-
| `resources.limits.memory` | Memory limit value for scheduling | `"512Mi"` |
241-
| `volumes` | Volumes for the container | `[]` |
242-
| `volumeMounts` | Volume mountings | `[]` |
239+
| Name | Description | Value |
240+
| --------------------------- | ---------------------------------------------- | ---------------------------- |
241+
| `image.registry` | Azure DevOps agent image registry | `docker.io` |
242+
| `image.repository` | Azure DevOps agent image repository | `btungut/azure-devops-agent` |
243+
| `image.tag` | Azure DevOps agent image tag | refer to values.yaml |
244+
| `image.pullPolicy` | Azure DevOps agent image pull policy | `IfNotPresent` |
245+
| `image.pullSecrets` | Azure DevOps agent image pull secrets | `[]` |
246+
| `replicaCount` | Replica count for deployment | `1` |
247+
| `resources` | Resource requests and limits for the container | `{}` |
248+
| `volumes` | Volumes for the container | `[]` |
249+
| `volumeMounts` | Volume mountings | `[]` |
243250

244251
Please refer the values.yaml for other parameters.
245252

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: "4.251.0-stable-v2.3.0"
33+
tag: "v2.3.0-vsts-v2.255.0"
3434
pullSecrets: []
3535

3636

0 commit comments

Comments
 (0)