From 8ec6e2677d79d080f5d85964d74f875f65a843bc Mon Sep 17 00:00:00 2001 From: Iain Sproat <68657+iainsproat@users.noreply.github.com> Date: Tue, 1 Apr 2025 14:54:03 +0100 Subject: [PATCH] fix container port --- utils/helm/speckle-preview-service/templates/deployment.yaml | 2 +- utils/helm/speckle-preview-service/values.yaml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/utils/helm/speckle-preview-service/templates/deployment.yaml b/utils/helm/speckle-preview-service/templates/deployment.yaml index 9de87319a..9018195c9 100644 --- a/utils/helm/speckle-preview-service/templates/deployment.yaml +++ b/utils/helm/speckle-preview-service/templates/deployment.yaml @@ -43,7 +43,7 @@ spec: imagePullPolicy: {{ .Values.image.pullPolicy }} ports: - name: metrics - containerPort: {{ .Values.service.port }} + containerPort: {{ .Values.port }} protocol: TCP env: - name: HOST diff --git a/utils/helm/speckle-preview-service/values.yaml b/utils/helm/speckle-preview-service/values.yaml index b09cf4b6e..5618e5541 100644 --- a/utils/helm/speckle-preview-service/values.yaml +++ b/utils/helm/speckle-preview-service/values.yaml @@ -51,7 +51,8 @@ host: '0.0.0.0' ## @param port ## @descriptionStart -## The port on which the preview service will listen for incoming requests. +## The port on which the preview service container will listen for incoming requests. +## This can differ from the service port, see service.port. ## @descriptionEnd port: '3001'