Skip to content
Snippets Groups Projects
Verified Commit 011c538e authored by Sheogorath's avatar Sheogorath :european_castle:
Browse files

test(keycloak): Fix unittest for chart

parent ab294a8e
No related branches found
No related tags found
No related merge requests found
Pipeline #15155 failed
...@@ -7,5 +7,5 @@ icon: https://www.keycloak.org/resources/images/keycloak_icon_512px.svg ...@@ -7,5 +7,5 @@ icon: https://www.keycloak.org/resources/images/keycloak_icon_512px.svg
sources: sources:
- https://git.shivering-isles.com/shivering-isles/infrastructure-gitops - https://git.shivering-isles.com/shivering-isles/infrastructure-gitops
- https://github.com/keycloak/keycloak - https://github.com/keycloak/keycloak
version: 0.4.2 version: 0.4.3
appVersion: "19.0.2" appVersion: "19.0.2"
# keycloak # keycloak
![Version: 0.4.2](https://img.shields.io/badge/Version-0.4.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 19.0.2](https://img.shields.io/badge/AppVersion-19.0.2-informational?style=flat-square) ![Version: 0.4.3](https://img.shields.io/badge/Version-0.4.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 19.0.2](https://img.shields.io/badge/AppVersion-19.0.2-informational?style=flat-square)
(Alpha) A Helm chart for Keycloak on Kubernetes (Alpha) A Helm chart for Keycloak on Kubernetes
......
...@@ -62,18 +62,22 @@ should match snapshot: ...@@ -62,18 +62,22 @@ should match snapshot:
image: quay.io/keycloak/keycloak:4.5.6 image: quay.io/keycloak/keycloak:4.5.6
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
livenessProbe: livenessProbe:
failureThreshold: 3
httpGet: httpGet:
path: /health/live path: /health/live
port: http port: http
periodSeconds: 10
name: keycloak name: keycloak
ports: ports:
- containerPort: 8080 - containerPort: 8080
name: http name: http
protocol: TCP protocol: TCP
readinessProbe: readinessProbe:
failureThreshold: 3
httpGet: httpGet:
path: /health/ready path: /health/ready
port: http port: http
periodSeconds: 10
resources: resources:
limits: limits:
cpu: "1" cpu: "1"
...@@ -87,6 +91,12 @@ should match snapshot: ...@@ -87,6 +91,12 @@ should match snapshot:
drop: drop:
- ALL - ALL
runAsNonRoot: true runAsNonRoot: true
startupProbe:
failureThreshold: 30
httpGet:
path: /health/live
port: http
periodSeconds: 10
securityContext: {} securityContext: {}
serviceAccountName: RELEASE-NAME-keycloak serviceAccountName: RELEASE-NAME-keycloak
2: | 2: |
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment