mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
Added ability to specify podAnnotations (#7780)
Signed-off-by: towmeykaw <tkindmark@gmail.com>
This commit is contained in:
committed by
k8s-ci-robot
parent
ed7a19eb3d
commit
29ba6b17e2
@@ -1,5 +1,5 @@
|
||||
name: keycloak
|
||||
version: 3.3.0
|
||||
version: 3.4.0
|
||||
appVersion: 4.2.1.Final
|
||||
description: Open Source Identity and Access Management For Modern Applications and Services
|
||||
keywords:
|
||||
|
||||
@@ -61,6 +61,7 @@ Parameter | Description | Default
|
||||
`keycloak.affinity` | Pod affinity. Passed through the `tpl` funtion and thus to be configured a string | `Hard node and soft zone anti-affinity`
|
||||
`keycloak.nodeSelector` | Node labels for pod assignment | `{}`
|
||||
`keycloak.tolerations` | Node taints to tolerate | `[]`
|
||||
`keycloak.podAnnotations` | Extra annotations to add to pod | `{}`
|
||||
`keycloak.securityContext` | Security context for the pod | `{runAsUser: 1000, fsGroup: 1000, runAsNonRoot: true}`
|
||||
`keycloak.preStartScript` | Custom script to run before Keycloak starts up | ``
|
||||
`keycloak.extraArgs` | Additional arguments to the start command | ``
|
||||
|
||||
@@ -20,6 +20,10 @@ spec:
|
||||
labels:
|
||||
app: {{ template "keycloak.name" . }}
|
||||
release: "{{ .Release.Name }}"
|
||||
{{- if .Values.keycloak.podAnnotations }}
|
||||
annotations:
|
||||
{{ toYaml .Values.keycloak.podAnnotations | indent 8 }}
|
||||
{{- end }}
|
||||
spec:
|
||||
securityContext:
|
||||
{{ toYaml .Values.keycloak.securityContext | indent 8 }}
|
||||
|
||||
@@ -85,6 +85,9 @@ keycloak:
|
||||
nodeSelector: {}
|
||||
tolerations: []
|
||||
|
||||
## Extra Annotations to be added to pod
|
||||
podAnnotations: {}
|
||||
|
||||
livenessProbe:
|
||||
initialDelaySeconds: 120
|
||||
timeoutSeconds: 5
|
||||
|
||||
Reference in New Issue
Block a user