From e6b68cbe402a47184e98ff33dd45f02394b126fb Mon Sep 17 00:00:00 2001 From: marie Date: Fri, 31 May 2024 14:24:16 +0200 Subject: [PATCH] service is always running on 6789 (cannot be changed) --- charts/mageai/templates/deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/mageai/templates/deployment.yaml b/charts/mageai/templates/deployment.yaml index 00ad4b3..c001ac3 100644 --- a/charts/mageai/templates/deployment.yaml +++ b/charts/mageai/templates/deployment.yaml @@ -52,7 +52,7 @@ spec: imagePullPolicy: {{ .Values.image.pullPolicy }} ports: - name: http - containerPort: {{ .Values.service.port }} + containerPort: 6789 protocol: TCP {{- if .Values.customLivenessProbe }} livenessProbe: {{- toYaml .Values.customLivenessProbe | nindent 12 }}