mirror of
https://github.com/bitnami/charts.git
synced 2026-08-10 14:15:55 +08:00
[bitnami/redmine] fix: 🔒 Move service-account token auto-mount to pod declaration (#22457)
Signed-off-by: Javier Salmeron Garcia <jsalmeron@vmware.com> Signed-off-by: Javier J. Salmerón-García <jsalmeron@vmware.com>
This commit is contained in:
@@ -43,4 +43,4 @@ maintainers:
|
|||||||
name: redmine
|
name: redmine
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/bitnami/charts/tree/main/bitnami/redmine
|
- https://github.com/bitnami/charts/tree/main/bitnami/redmine
|
||||||
version: 26.2.1
|
version: 26.3.0
|
||||||
|
|||||||
@@ -161,6 +161,7 @@ helm install my-release oci://REGISTRY_NAME/REPOSITORY_NAME/redmine --set databa
|
|||||||
| `customReadinessProbe` | Custom readinessProbe that overrides the default one | `{}` |
|
| `customReadinessProbe` | Custom readinessProbe that overrides the default one | `{}` |
|
||||||
| `customStartupProbe` | Custom startupProbe that overrides the default one | `{}` |
|
| `customStartupProbe` | Custom startupProbe that overrides the default one | `{}` |
|
||||||
| `lifecycleHooks` | LifecycleHooks to set additional configuration at startup | `{}` |
|
| `lifecycleHooks` | LifecycleHooks to set additional configuration at startup | `{}` |
|
||||||
|
| `automountServiceAccountToken` | Mount Service Account token in pod | `false` |
|
||||||
| `hostAliases` | Redmine pod host aliases | `[]` |
|
| `hostAliases` | Redmine pod host aliases | `[]` |
|
||||||
| `podLabels` | Extra labels for Redmine pods | `{}` |
|
| `podLabels` | Extra labels for Redmine pods | `{}` |
|
||||||
| `podAnnotations` | Annotations for Redmine pods | `{}` |
|
| `podAnnotations` | Annotations for Redmine pods | `{}` |
|
||||||
|
|||||||
@@ -29,6 +29,7 @@ spec:
|
|||||||
{{- end }}
|
{{- end }}
|
||||||
spec:
|
spec:
|
||||||
{{- include "redmine.imagePullSecrets" . | nindent 6 }}
|
{{- include "redmine.imagePullSecrets" . | nindent 6 }}
|
||||||
|
automountServiceAccountToken: {{ .Values.automountServiceAccountToken }}
|
||||||
{{- if .Values.hostAliases }}
|
{{- if .Values.hostAliases }}
|
||||||
hostAliases: {{- include "common.tplvalues.render" (dict "value" .Values.hostAliases "context" $) | nindent 8 }}
|
hostAliases: {{- include "common.tplvalues.render" (dict "value" .Values.hostAliases "context" $) | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|||||||
@@ -275,6 +275,9 @@ customStartupProbe: {}
|
|||||||
## @param lifecycleHooks LifecycleHooks to set additional configuration at startup
|
## @param lifecycleHooks LifecycleHooks to set additional configuration at startup
|
||||||
##
|
##
|
||||||
lifecycleHooks: {}
|
lifecycleHooks: {}
|
||||||
|
## @param automountServiceAccountToken Mount Service Account token in pod
|
||||||
|
##
|
||||||
|
automountServiceAccountToken: false
|
||||||
## @param hostAliases Redmine pod host aliases
|
## @param hostAliases Redmine pod host aliases
|
||||||
## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/
|
## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/
|
||||||
##
|
##
|
||||||
|
|||||||
Reference in New Issue
Block a user