feat: configurable automountServiceAccountToken
Signed-off-by: Kyle Cogswell <kcogswell26@gmail.com>
This commit is contained in:
parent
936101865d
commit
e7da93b05d
5 changed files with 11 additions and 3 deletions
|
@ -2,7 +2,7 @@ apiVersion: v2
|
|||
appVersion: v1.7.2
|
||||
description: A Helm chart for Argo Rollouts
|
||||
name: argo-rollouts
|
||||
version: 2.37.8
|
||||
version: 2.37.9
|
||||
home: https://github.com/argoproj/argo-helm
|
||||
icon: https://argoproj.github.io/argo-rollouts/assets/logo.png
|
||||
keywords:
|
||||
|
@ -18,5 +18,5 @@ annotations:
|
|||
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
|
||||
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
||||
artifacthub.io/changes: |
|
||||
- kind: fixed
|
||||
description: Fixed rendering of plugins in the ConfigMap
|
||||
- kind: changed
|
||||
description: Add configurable automountServiceAccountToken
|
||||
|
|
|
@ -134,6 +134,7 @@ For full list of changes please check ArtifactHub [changelog].
|
|||
| podLabels | object | `{}` | Labels to be added to the Rollout pods |
|
||||
| podSecurityContext | object | `{"runAsNonRoot":true}` | Security Context to set on pod level |
|
||||
| serviceAccount.annotations | object | `{}` | Annotations to add to the service account |
|
||||
| serviceAccount.automount | bool | `true` | Automount API credentials for the Service Account into the pod. |
|
||||
| serviceAccount.create | bool | `true` | Specifies whether a service account should be created |
|
||||
| serviceAccount.name | string | `""` | The name of the service account to use. If not set and create is true, a name is generated using the fullname template |
|
||||
| serviceAnnotations | object | `{}` | Annotations to be added to the Rollout service |
|
||||
|
@ -191,6 +192,7 @@ For full list of changes please check ArtifactHub [changelog].
|
|||
| dashboard.service.targetPort | int | `3100` | Service target port |
|
||||
| dashboard.service.type | string | `"ClusterIP"` | Sets the type of the Service |
|
||||
| dashboard.serviceAccount.annotations | object | `{}` | Annotations to add to the dashboard service account |
|
||||
| dashboard.serviceAccount.automount | bool | `true` | Automount API credentials for the Service Account into the pod. |
|
||||
| dashboard.serviceAccount.create | bool | `true` | Specifies whether a dashboard service account should be created |
|
||||
| dashboard.serviceAccount.name | string | `""` | The name of the service account to use. If not set and create is true, a name is generated using the fullname template |
|
||||
| dashboard.tolerations | list | `[]` | [Tolerations] for use with node taints |
|
||||
|
|
|
@ -44,6 +44,7 @@ spec:
|
|||
{{- toYaml . | nindent 8 }}
|
||||
{{- end }}
|
||||
serviceAccountName: {{ include "argo-rollouts.serviceAccountName" . }}
|
||||
automountServiceAccountToken: {{ .Values.serviceAccount.automount }}
|
||||
containers:
|
||||
- image: "{{ .Values.controller.image.registry }}/{{ .Values.controller.image.repository }}:{{ default .Chart.AppVersion .Values.controller.image.tag }}"
|
||||
args:
|
||||
|
|
|
@ -45,6 +45,7 @@ spec:
|
|||
{{- toYaml . | nindent 8 }}
|
||||
{{- end }}
|
||||
serviceAccountName: {{ include "argo-rollouts.serviceAccountName" . }}-dashboard
|
||||
automountServiceAccountToken: {{ .Values.dashboard.serviceAccount.automount }}
|
||||
containers:
|
||||
- image: "{{ .Values.dashboard.image.registry }}/{{ .Values.dashboard.image.repository }}:{{ default .Chart.AppVersion .Values.dashboard.image.tag }}"
|
||||
imagePullPolicy: {{ .Values.dashboard.image.pullPolicy }}
|
||||
|
|
|
@ -229,6 +229,8 @@ serviceAccount:
|
|||
# -- The name of the service account to use.
|
||||
# If not set and create is true, a name is generated using the fullname template
|
||||
name: ""
|
||||
# -- Automount API credentials for the Service Account into the pod.
|
||||
automount: true
|
||||
|
||||
# -- Annotations to be added to all CRDs
|
||||
crdAnnotations: {}
|
||||
|
@ -384,6 +386,8 @@ dashboard:
|
|||
# -- The name of the service account to use.
|
||||
# If not set and create is true, a name is generated using the fullname template
|
||||
name: ""
|
||||
# -- Automount API credentials for the Service Account into the pod.
|
||||
automount: true
|
||||
|
||||
## Configure Pod Disruption Budget for the dashboard
|
||||
pdb:
|
||||
|
|
Loading…
Reference in a new issue