Skip to content

Commit 6e1819d

Browse files
committed
chart/daemonset add azure workload identity label to resource (closes #114)
1 parent 87ba766 commit 6e1819d

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Version 0.1.42 (2023-09-14)
2+
---------------------------
3+
charts/daemonset: Add azure workload identity label (#114)
4+
15
Version 0.1.41 (2023-09-13)
26
---------------------------
37
charts/daemonset: Add support for Azure managed identity (#112)

charts/daemonset/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
22
name: daemonset
33
description: A Helm Chart to deploy an arbitrary container as a daemonset.
4-
version: 0.3.0
4+
version: 0.3.1
55
icon: https://raw.githubusercontent.com/snowplow-devops/helm-charts/master/docs/logo/snowplow.png
66
home: https://github.com/snowplow-devops/helm-charts
77
sources:

charts/daemonset/templates/daemonset.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ spec:
1010
metadata:
1111
labels:
1212
app: {{ include "app.fullname" . }}
13+
{{- if eq .Values.global.cloud "azure" }}
14+
azure.workload.identity/use: "true"
15+
{{- end }}
1316
annotations:
1417
{{- with .Values.daemonsetAnnotations }}
1518
{{- toYaml . | nindent 10 }}

0 commit comments

Comments
 (0)