From 03b806384c3d03b940c466f4e97e2a21f6b5edc6 Mon Sep 17 00:00:00 2001 From: Brooooooklyn Date: Mon, 10 Feb 2025 07:06:10 +0000 Subject: [PATCH] ci: fix doc deployment container port (#10048) --- .github/helm/affine/charts/doc/templates/deployment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/helm/affine/charts/doc/templates/deployment.yaml b/.github/helm/affine/charts/doc/templates/deployment.yaml index b28870be78..b64088cf42 100644 --- a/.github/helm/affine/charts/doc/templates/deployment.yaml +++ b/.github/helm/affine/charts/doc/templates/deployment.yaml @@ -68,7 +68,7 @@ spec: - name: REDIS_SERVER_DATABASE value: "{{ .Values.global.redis.database }}" - name: AFFINE_SERVER_PORT - value: "{{ .Values.service.port }}" + value: "{{ .Values.global.docService.port }}" - name: AFFINE_SERVER_SUB_PATH value: "{{ .Values.app.path }}" - name: AFFINE_SERVER_HOST @@ -77,7 +77,7 @@ spec: value: "{{ .Values.app.https }}" ports: - name: http - containerPort: {{ .Values.service.port }} + containerPort: {{ .Values.global.docService.port }} protocol: TCP livenessProbe: httpGet: