Skip to content

feat(helmchart): Extend helm chart to include automount toggle for service account #1419

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 24 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
327ebbc
Extend helm chart to create secret token and include automount toggle…
vakaobr Jul 30, 2024
3da2549
Extend helm chart to create secret token and include automount toggle…
vakaobr Jul 30, 2024
5b71bcc
Extend helm chart to create secret token and include automount toggle…
vakaobr Jul 30, 2024
0c06b59
Extend helm chart to create secret token and include automount toggle…
vakaobr Jul 30, 2024
9258cfd
Extend helm chart to create secret token and include automount toggle…
vakaobr Jul 30, 2024
08c9a9c
Extend helm chart to create secret token and include automount toggle…
vakaobr Jul 30, 2024
1917789
Merge branch 'main' into extend-helm-chart-options
vakaobr Aug 5, 2024
ce76b98
Merge branch 'main' into extend-helm-chart-options
vakaobr Aug 7, 2024
f715054
Merge branch 'main' into extend-helm-chart-options
vakaobr Aug 14, 2024
c09369d
Merge branch 'main' into extend-helm-chart-options
vakaobr Aug 29, 2024
0a39262
Merge branch 'main' into extend-helm-chart-options
vakaobr Sep 5, 2024
d4c1336
Merge branch 'main' into extend-helm-chart-options
vakaobr Oct 10, 2024
7a115b1
Merge branch 'main' into extend-helm-chart-options
vakaobr Oct 16, 2024
eec061e
Merge branch 'main' into extend-helm-chart-options
vakaobr Nov 1, 2024
7ec6f6a
Merge branch 'main' into extend-helm-chart-options
vakaobr Dec 2, 2024
347af8d
Merge branch 'main' into extend-helm-chart-options
vakaobr Dec 5, 2024
66b1c7a
Merge branch 'main' into extend-helm-chart-options
vakaobr Dec 19, 2024
d1a59ab
Merge branch 'main' into extend-helm-chart-options
vakaobr Dec 30, 2024
f41ab77
Merge branch 'main' into extend-helm-chart-options
vakaobr Jan 9, 2025
fd55f56
Merge branch 'main' into extend-helm-chart-options
vakaobr Jan 21, 2025
0caf6af
Merge branch 'main' into extend-helm-chart-options
vakaobr Feb 4, 2025
0388b83
Merge branch 'main' into extend-helm-chart-options
vakaobr Mar 26, 2025
150eda2
Merge branch 'main' into extend-helm-chart-options
vakaobr Apr 9, 2025
113d442
Merge branch 'main' into extend-helm-chart-options
vakaobr Apr 24, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ imagePullSecrets:
{{- end }}
apiVersion: v1
kind: ServiceAccount
automountServiceAccountToken: {{ .Values.serviceAccount.automountServiceAccountToken }}
metadata:
labels:
app: '{{ template "workload-identity-webhook.name" . }}'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,9 @@ spec:
{{- toYaml .Values.nodeSelector | nindent 8 }}
priorityClassName: {{ .Values.priorityClassName }}
serviceAccountName: azure-wi-webhook-admin
{{- if eq .Values.serviceAccount.automountServiceAccountToken false }}
automountServiceAccountToken: true
{{- end }}
tolerations:
{{- toYaml .Values.tolerations | nindent 8 }}
volumes:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ image:
# Overrides the image tag whose default is the chart appVersion.
release: v1.5.0
imagePullSecrets: []
# Define if the service account can be used by default (automount property)
serviceAccount:
automountServiceAccountToken: false
nodeSelector:
kubernetes.io/os: linux
resources:
Expand Down