Skip to content

Commit f5390fc

Browse files
authored
release: update manifest and helm charts for v1.4.1 (#1535)
Co-authored-by: aramase <[email protected]>
1 parent cca3a51 commit f5390fc

File tree

16 files changed

+20
-20
lines changed

16 files changed

+20
-20
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ REGISTRY ?= mcr.microsoft.com/oss/azure/workload-identity
22
PROXY_IMAGE_NAME := proxy
33
INIT_IMAGE_NAME := proxy-init
44
WEBHOOK_IMAGE_NAME := webhook
5-
IMAGE_VERSION ?= v1.4.0
5+
IMAGE_VERSION ?= v1.4.1
66

77
ORG_PATH := github.com/Azure
88
PROJECT_NAME := azure-workload-identity

charts/workload-identity-webhook/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: workload-identity-webhook
33
description: A Helm chart to install the azure-workload-identity webhook
44
type: application
5-
version: 1.4.0
6-
appVersion: v1.4.0
5+
version: 1.4.1
6+
appVersion: v1.4.1
77
home: https://github.com/Azure/azure-workload-identity
88
sources:
99
- https://github.com/Azure/azure-workload-identity

charts/workload-identity-webhook/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ helm upgrade -n azure-workload-identity-system [RELEASE_NAME] azure-workload-ide
3434
| replicaCount | The number of azure-workload-identity replicas to deploy for the webhook | `2` |
3535
| image.repository | Image repository | `mcr.microsoft.com/oss/azure/workload-identity/webhook` |
3636
| image.pullPolicy | Image pullPolicy | `IfNotPresent` |
37-
| image.release | The image release tag to use | Current release version: `v1.4.0` |
37+
| image.release | The image release tag to use | Current release version: `v1.4.1` |
3838
| imagePullSecrets | Image pull secrets to use for retrieving images from private registries | `[]` |
3939
| nodeSelector | The node selector to use for pod scheduling | `kubernetes.io/os: linux` |
4040
| resources | The resource request/limits for the container image | limits: 100m CPU, 30Mi, requests: 100m CPU, 20Mi |

charts/workload-identity-webhook/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ image:
77
repository: mcr.microsoft.com/oss/azure/workload-identity/webhook
88
pullPolicy: IfNotPresent
99
# Overrides the image tag whose default is the chart appVersion.
10-
release: v1.4.0
10+
release: v1.4.1
1111
imagePullSecrets: []
1212
nodeSelector:
1313
kubernetes.io/os: linux

config/manager/kustomization.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ kind: Kustomization
55
images:
66
- name: manager
77
newName: mcr.microsoft.com/oss/azure/workload-identity/webhook
8-
newTag: v1.4.0
8+
newTag: v1.4.1
99
configMapGenerator:
1010
- literals:
1111
- AZURE_TENANT_ID="${AZURE_TENANT_ID}"

deploy/azure-wi-webhook.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ spec:
160160
envFrom:
161161
- configMapRef:
162162
name: azure-wi-webhook-config
163-
image: mcr.microsoft.com/oss/azure/workload-identity/webhook:v1.4.0
163+
image: mcr.microsoft.com/oss/azure/workload-identity/webhook:v1.4.1
164164
imagePullPolicy: IfNotPresent
165165
livenessProbe:
166166
failureThreshold: 6

docs/book/src/installation/mutating-admission-webhook.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ The deployment YAML contains the environment variables we defined above and we r
7373
Install the webhook using the deployment YAML via `kubectl apply -f` and `envsubst`:
7474

7575
```bash
76-
curl -sL https://github.com/Azure/azure-workload-identity/releases/download/v1.4.0/azure-wi-webhook.yaml | envsubst | kubectl apply -f -
76+
curl -sL https://github.com/Azure/azure-workload-identity/releases/download/v1.4.1/azure-wi-webhook.yaml | envsubst | kubectl apply -f -
7777
```
7878

7979
<details>

examples/migration/pod-with-proxy-init-and-proxy-sidecar.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ spec:
88
serviceAccountName: workload-identity-sa
99
initContainers:
1010
- name: init-networking
11-
image: mcr.microsoft.com/oss/azure/workload-identity/proxy-init:v1.4.0
11+
image: mcr.microsoft.com/oss/azure/workload-identity/proxy-init:v1.4.1
1212
securityContext:
1313
capabilities:
1414
add:
@@ -26,6 +26,6 @@ spec:
2626
ports:
2727
- containerPort: 80
2828
- name: proxy
29-
image: mcr.microsoft.com/oss/azure/workload-identity/proxy:v1.4.0
29+
image: mcr.microsoft.com/oss/azure/workload-identity/proxy:v1.4.1
3030
ports:
3131
- containerPort: 8000

manifest_staging/charts/workload-identity-webhook/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: workload-identity-webhook
33
description: A Helm chart to install the azure-workload-identity webhook
44
type: application
5-
version: 1.4.0
6-
appVersion: v1.4.0
5+
version: 1.4.1
6+
appVersion: v1.4.1
77
home: https://github.com/Azure/azure-workload-identity
88
sources:
99
- https://github.com/Azure/azure-workload-identity

manifest_staging/charts/workload-identity-webhook/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ helm upgrade -n azure-workload-identity-system [RELEASE_NAME] azure-workload-ide
3434
| replicaCount | The number of azure-workload-identity replicas to deploy for the webhook | `2` |
3535
| image.repository | Image repository | `mcr.microsoft.com/oss/azure/workload-identity/webhook` |
3636
| image.pullPolicy | Image pullPolicy | `IfNotPresent` |
37-
| image.release | The image release tag to use | Current release version: `v1.4.0` |
37+
| image.release | The image release tag to use | Current release version: `v1.4.1` |
3838
| imagePullSecrets | Image pull secrets to use for retrieving images from private registries | `[]` |
3939
| nodeSelector | The node selector to use for pod scheduling | `kubernetes.io/os: linux` |
4040
| resources | The resource request/limits for the container image | limits: 100m CPU, 30Mi, requests: 100m CPU, 20Mi |

manifest_staging/charts/workload-identity-webhook/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ image:
77
repository: mcr.microsoft.com/oss/azure/workload-identity/webhook
88
pullPolicy: IfNotPresent
99
# Overrides the image tag whose default is the chart appVersion.
10-
release: v1.4.0
10+
release: v1.4.1
1111
imagePullSecrets: []
1212
nodeSelector:
1313
kubernetes.io/os: linux

manifest_staging/deploy/azure-wi-webhook.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ spec:
160160
envFrom:
161161
- configMapRef:
162162
name: azure-wi-webhook-config
163-
image: mcr.microsoft.com/oss/azure/workload-identity/webhook:v1.4.0
163+
image: mcr.microsoft.com/oss/azure/workload-identity/webhook:v1.4.1
164164
imagePullPolicy: IfNotPresent
165165
livenessProbe:
166166
failureThreshold: 6

pkg/cmd/podidentity/detect.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ var (
3535

3636
const (
3737
imageRepository = "mcr.microsoft.com/oss/azure/workload-identity"
38-
imageTag = "v1.4.0"
38+
imageTag = "v1.4.1"
3939

4040
proxyInitImageName = "proxy-init"
4141
proxyImageName = "proxy"

third_party/open-policy-agent/gatekeeper/helmify/static/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: workload-identity-webhook
33
description: A Helm chart to install the azure-workload-identity webhook
44
type: application
5-
version: 1.4.0
6-
appVersion: v1.4.0
5+
version: 1.4.1
6+
appVersion: v1.4.1
77
home: https://github.com/Azure/azure-workload-identity
88
sources:
99
- https://github.com/Azure/azure-workload-identity

third_party/open-policy-agent/gatekeeper/helmify/static/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ helm upgrade -n azure-workload-identity-system [RELEASE_NAME] azure-workload-ide
3434
| replicaCount | The number of azure-workload-identity replicas to deploy for the webhook | `2` |
3535
| image.repository | Image repository | `mcr.microsoft.com/oss/azure/workload-identity/webhook` |
3636
| image.pullPolicy | Image pullPolicy | `IfNotPresent` |
37-
| image.release | The image release tag to use | Current release version: `v1.4.0` |
37+
| image.release | The image release tag to use | Current release version: `v1.4.1` |
3838
| imagePullSecrets | Image pull secrets to use for retrieving images from private registries | `[]` |
3939
| nodeSelector | The node selector to use for pod scheduling | `kubernetes.io/os: linux` |
4040
| resources | The resource request/limits for the container image | limits: 100m CPU, 30Mi, requests: 100m CPU, 20Mi |

third_party/open-policy-agent/gatekeeper/helmify/static/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ image:
77
repository: mcr.microsoft.com/oss/azure/workload-identity/webhook
88
pullPolicy: IfNotPresent
99
# Overrides the image tag whose default is the chart appVersion.
10-
release: v1.4.0
10+
release: v1.4.1
1111
imagePullSecrets: []
1212
nodeSelector:
1313
kubernetes.io/os: linux

0 commit comments

Comments
 (0)