Skip to content

Commit b618246

Browse files
author
Your Name
committed
Bump up Version
1 parent b2e02df commit b618246

File tree

4 files changed

+15
-7
lines changed

4 files changed

+15
-7
lines changed

charts/opencloud-microservices/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ maintainers:
1212
1313
url: https://opencloud.eu
1414
type: application
15-
version: 0.2.9
15+
version: 0.3.0
1616
# renovate: datasource=docker depName=opencloudeu/opencloud-rolling
1717
appVersion: 3.4.0
1818
kubeVersion: ""

charts/opencloud-microservices/deployments/timoni/opencloud.cue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ bundle: {
2525
}
2626
chart: {
2727
name: "opencloud-microservices"
28-
version: "0.2.7"
28+
version: "0.3.0"
2929
}
3030
sync: {
3131
timeout: 10

charts/opencloud-microservices/templates/keycloak/deployment.yaml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ spec:
3232
- "--hostname=https://{{ .Values.keycloak.domain }}"
3333
- "--spi-connections-http-client-default-disable-trust-manager={{ .Values.insecure.oidcIdpInsecure }}"
3434
- "--import-realm"
35+
- "--health-enabled=true"
3536

3637
env:
3738
- name: OC_DOMAIN
@@ -72,6 +73,9 @@ spec:
7273
- name: http
7374
containerPort: 8080
7475
protocol: TCP
76+
- name: http-management
77+
containerPort: 9000
78+
protocol: TCP
7579
volumeMounts:
7680
- name: script
7781
mountPath: /opt/keycloak/bin/docker-entrypoint-override.sh
@@ -88,22 +92,22 @@ spec:
8892
memory: 1Gi
8993
startupProbe:
9094
httpGet:
91-
path: /
92-
port: http
95+
path: /health/ready
96+
port: http-management
9397
periodSeconds: 10
9498
failureThreshold: 30
9599
readinessProbe:
96100
httpGet:
97-
path: /
98-
port: http
101+
path: /health/ready
102+
port: http-management
99103
initialDelaySeconds: 30
100104
periodSeconds: 10
101105
timeoutSeconds: 5
102106
failureThreshold: 12
103107
livenessProbe:
104108
httpGet:
105109
path: /health/live
106-
port: http
110+
port: http-management
107111
initialDelaySeconds: 90
108112
periodSeconds: 10
109113
timeoutSeconds: 5

charts/opencloud-microservices/templates/keycloak/service.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ spec:
1313
targetPort: 8080
1414
protocol: TCP
1515
name: http
16+
- port: 9000
17+
targetPort: 9000
18+
protocol: TCP
19+
name: http-management
1620
selector:
1721
app: {{ .appName }}
1822
{{- end }}

0 commit comments

Comments
 (0)