diff --git a/dev/helm/templates/deployment.yaml b/dev/helm/templates/deployment.yaml index 62f02bc7..1d6d11b3 100644 --- a/dev/helm/templates/deployment.yaml +++ b/dev/helm/templates/deployment.yaml @@ -77,7 +77,7 @@ spec: {{- end }} ports: - name: http - containerPort: 3000 + containerPort: {{ .Values.containerPort }} protocol: TCP livenessProbe: {{- toYaml .Values.livenessProbe | nindent 12 }} diff --git a/dev/helm/values.yaml b/dev/helm/values.yaml index 1a450d6e..9899c791 100644 --- a/dev/helm/values.yaml +++ b/dev/helm/values.yaml @@ -13,6 +13,8 @@ imagePullSecrets: [] nameOverride: "" fullnameOverride: "" +containerPort: 3000 + serviceAccount: # Specifies whether a service account should be created create: true