diff options
Diffstat (limited to 'kubernetes/portal-ng/components/portal-ng-ui/templates/deployment.yaml')
-rw-r--r-- | kubernetes/portal-ng/components/portal-ng-ui/templates/deployment.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kubernetes/portal-ng/components/portal-ng-ui/templates/deployment.yaml b/kubernetes/portal-ng/components/portal-ng-ui/templates/deployment.yaml index 96f21f80e9..6a16384346 100644 --- a/kubernetes/portal-ng/components/portal-ng-ui/templates/deployment.yaml +++ b/kubernetes/portal-ng/components/portal-ng-ui/templates/deployment.yaml @@ -36,13 +36,13 @@ spec: livenessProbe: httpGet: path: / - port: http + port: {{ .Values.service.internalPort}} initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }} failureThreshold: {{ .Values.probes.liveness.failureThreshold }} readinessProbe: httpGet: path: / - port: http + port: {{ .Values.service.internalPort}} initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }} failureThreshold: {{ .Values.probes.readiness.failureThreshold }} volumeMounts: |