Skip to content

Commit bde2b29

Browse files
pisarzeliobischof
andauthored
feat: introduce parameterization to probe schemes (#132)
* feat: Introduce parameterization to probe schemes * move default scheme to values.yaml --------- Co-authored-by: Elio Bischof <[email protected]>
1 parent bcfd12a commit bde2b29

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

charts/zitadel/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: zitadel
33
description: A Helm chart for ZITADEL
44
type: application
55
appVersion: "v2.46.0"
6-
version: 7.8.0
6+
version: 7.9.0
77
kubeVersion: ">= 1.21.0-0"
88
icon: https://zitadel.com/zitadel-logo-dark.svg
99
maintainers:

charts/zitadel/templates/deployment.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ spec:
9797
httpGet:
9898
path: /debug/healthz
9999
port: {{ .Values.service.protocol }}-server
100+
scheme: {{ .Values.service.scheme }}
100101
{{- if .Values.zitadel.configmapConfig.ExternalDomain }}
101102
httpHeaders:
102103
- name: Host
@@ -114,6 +115,7 @@ spec:
114115
httpGet:
115116
path: /debug/ready
116117
port: {{ .Values.service.protocol }}-server
118+
scheme: {{ .Values.service.scheme }}
117119
{{- if .Values.zitadel.configmapConfig.ExternalDomain }}
118120
httpHeaders:
119121
- name: Host
@@ -131,6 +133,7 @@ spec:
131133
httpGet:
132134
path: /debug/ready
133135
port: {{ .Values.service.protocol }}-server
136+
scheme: {{ .Values.service.scheme }}
134137
{{- if .Values.zitadel.configmapConfig.ExternalDomain }}
135138
httpHeaders:
136139
- name: Host

charts/zitadel/values.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ service:
126126
port: 8080
127127
protocol: http2
128128
annotations: {}
129+
scheme: HTTP
129130

130131
ingress:
131132
enabled: false

0 commit comments

Comments
 (0)