diff options
author | 2025-03-05 09:20:47 +0100 | |
---|---|---|
committer | 2025-03-05 09:20:47 +0100 | |
commit | 704aca56e278d9e85c5167269e5c2172c792dfa6 (patch) | |
tree | aece3ed7716d24aed92b5ad882e5abcf2373a4f6 /kubernetes | |
parent | 6602551f7bac15cdaf7cbf2b9b6d3f43ae482fc6 (diff) |
[UUI] Fix UUI chart issue
Issue-ID: USECASEUI-883
Change-Id: Iac9095bfc30c2e2fc8ccffcf3d021f56e66e4951
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Diffstat (limited to 'kubernetes')
-rw-r--r-- | kubernetes/uui/components/uui-server/templates/deployment.yaml | 4 | ||||
-rw-r--r-- | kubernetes/uui/templates/deployment.yaml | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/kubernetes/uui/components/uui-server/templates/deployment.yaml b/kubernetes/uui/components/uui-server/templates/deployment.yaml index 58d91a024a..6956970bbb 100644 --- a/kubernetes/uui/components/uui-server/templates/deployment.yaml +++ b/kubernetes/uui/components/uui-server/templates/deployment.yaml @@ -86,14 +86,14 @@ spec: {{- if eq .Values.liveness.enabled true }} livenessProbe: tcpSocket: - port: {{ .Values.service.internalPort }} + port: {{ index .Values.service.ports 0 "port" }} initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} periodSeconds: {{ .Values.liveness.periodSeconds }} {{- end }} resources: {{ include "common.resources" . | nindent 12 }} readinessProbe: tcpSocket: - port: {{ .Values.service.internalPort }} + port: {{ index .Values.service.ports 0 "port" }} initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} periodSeconds: {{ .Values.readiness.periodSeconds }} env: diff --git a/kubernetes/uui/templates/deployment.yaml b/kubernetes/uui/templates/deployment.yaml index c9feacc1ba..abbd35dc63 100644 --- a/kubernetes/uui/templates/deployment.yaml +++ b/kubernetes/uui/templates/deployment.yaml @@ -61,13 +61,13 @@ spec: {{- if eq .Values.liveness.enabled true }} livenessProbe: tcpSocket: - port: {{ .Values.service.internalPort }} + port: {{ index .Values.service.ports 0 "port" }} initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} periodSeconds: {{ .Values.liveness.periodSeconds }} {{ end -}} readinessProbe: tcpSocket: - port: {{ .Values.service.internalPort }} + port: {{ index .Values.service.ports 0 "port" }} initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} periodSeconds: {{ .Values.readiness.periodSeconds }} volumeMounts: |