diff --git a/charts/keycloak/Chart.yaml b/charts/keycloak/Chart.yaml index 4196d3f57f1c3db876ad7a822aad08a325ec7e48..75d8da2b08579f909a1ea9025e6ccf18eece1e4e 100644 --- a/charts/keycloak/Chart.yaml +++ b/charts/keycloak/Chart.yaml @@ -7,5 +7,5 @@ icon: https://www.keycloak.org/resources/images/keycloak_icon_512px.svg sources: - https://git.shivering-isles.com/shivering-isles/infrastructure-gitops - https://github.com/keycloak/keycloak -version: 0.4.1 +version: 0.4.2 appVersion: "19.0.2" diff --git a/charts/keycloak/README.md b/charts/keycloak/README.md index c79ace5686b39baf66fce6d7841222668acd3803..4924fec7f38069be9868f3d379249cdd1c25796c 100644 --- a/charts/keycloak/README.md +++ b/charts/keycloak/README.md @@ -1,6 +1,6 @@ # keycloak -   +   (Alpha) A Helm chart for Keycloak on Kubernetes diff --git a/charts/keycloak/templates/deployment.yaml b/charts/keycloak/templates/deployment.yaml index f6f4702f80e73eb7fe53fb0915d3f9fd65a5c648..a06209c314276abb16e2804717bb0fa86c10200f 100644 --- a/charts/keycloak/templates/deployment.yaml +++ b/charts/keycloak/templates/deployment.yaml @@ -92,10 +92,20 @@ spec: httpGet: path: /health/live port: http + failureThreshold: 3 + periodSeconds: 10 readinessProbe: httpGet: path: /health/ready port: http + failureThreshold: 3 + periodSeconds: 10 + startupProbe: + httpGet: + path: /health/live + port: http + failureThreshold: 30 + periodSeconds: 10 resources: {{- toYaml .Values.resources | nindent 12 }} {{- with .Values.nodeSelector }}