Skip to content

Commit 0263657

Browse files
committed
fix(appProtocol): ensure appProtocol can be valid without invalidating probes
1 parent 5faa868 commit 0263657

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
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.65.3
6-
version: 8.7.0
6+
version: 8.7.1
77
kubeVersion: '>= 1.21.0-0'
88
icon: https://zitadel.com/zitadel-logo-dark.svg
99
maintainers:

charts/zitadel/templates/service.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ spec:
2121
protocol: TCP
2222
name: {{ regexReplaceAll "\\W+" .Values.service.protocol "-" }}-server
2323
{{- if semverCompare ">=1.19-0" $.Capabilities.KubeVersion.GitVersion }}
24-
appProtocol: {{ .Values.service.protocol }}
24+
appProtocol: {{ .Values.service.appProtocol }}
2525
{{- end }}
2626
selector:
2727
{{- include "zitadel.selectorLabels" . | nindent 4 }}

charts/zitadel/values.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,7 @@ service:
143143
clusterIP: ""
144144
port: 8080
145145
protocol: http2
146+
appProtocol: kubernetes.io/h2c
146147
annotations: {}
147148
scheme: HTTP
148149

0 commit comments

Comments
 (0)