File tree 5 files changed +10
-2
lines changed
5 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ This file documents all notable changes to [ingress-nginx](https://github.com/ku
4
4
5
5
### Unreleased
6
6
7
+ ### 3.25.0
8
+
9
+ - [X] [ #6957 ] ( https://github.com/kubernetes/ingress-nginx/pull/6957 ) Add ability to specify automountServiceAccountToken
10
+
7
11
### 3.24.0
8
12
9
13
- [X] [ #6908 ] ( https://github.com/kubernetes/ingress-nginx/pull/6908 ) Add volumes to default-backend deployment
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
2
2
name : ingress-nginx
3
3
# When the version is modified, make sure the artifacthub.io/changes list is updated
4
4
# Also update CHANGELOG.md
5
- version : 3.24 .0
5
+ version : 3.25 .0
6
6
appVersion : 0.44.0
7
7
home : https://github.com/kubernetes/ingress-nginx
8
8
description : Ingress controller for Kubernetes using NGINX as a reverse proxy and load balancer
@@ -21,4 +21,4 @@ annotations:
21
21
# List of changes for the release in artifacthub.io
22
22
# https://artifacthub.io/packages/helm/ingress-nginx/ingress-nginx?modal=changelog
23
23
artifacthub.io/changes : |
24
- - Add volumes to default-backend deployment
24
+ - Add ability to specify automountServiceAccountToken
Original file line number Diff line number Diff line change @@ -6,4 +6,5 @@ metadata:
6
6
{{- include "ingress-nginx.labels" . | nindent 4 }}
7
7
app.kubernetes.io/component : controller
8
8
name : {{ template "ingress-nginx.serviceAccountName" . }}
9
+ automountServiceAccountToken : {{ .Values.serviceAccount.automountServiceAccountToken }}
9
10
{{- end }}
Original file line number Diff line number Diff line change @@ -6,4 +6,5 @@ metadata:
6
6
{{- include "ingress-nginx.labels" . | nindent 4 }}
7
7
app.kubernetes.io/component : default-backend
8
8
name : {{ template "ingress-nginx.defaultBackend.serviceAccountName" . }}
9
+ automountServiceAccountToken : {{ .Values.defaultBackend.serviceAccount.automountServiceAccountToken }}
9
10
{{- end }}
Original file line number Diff line number Diff line change @@ -614,6 +614,7 @@ defaultBackend:
614
614
serviceAccount :
615
615
create : true
616
616
name : " "
617
+ automountServiceAccountToken : true
617
618
# # Additional environment variables to set for defaultBackend pods
618
619
extraEnvs : []
619
620
@@ -724,6 +725,7 @@ podSecurityPolicy:
724
725
serviceAccount :
725
726
create : true
726
727
name : " "
728
+ automountServiceAccountToken : true
727
729
728
730
# # Optional array of imagePullSecrets containing private registry credentials
729
731
# # Ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
You can’t perform that action at this time.
0 commit comments