Merge "[POLICY] Correct container ports in Nexus and GUI"
authorAndreas Geissler <andreas-geissler@telekom.de>
Thu, 20 Jul 2023 06:36:08 +0000 (06:36 +0000)
committerGerrit Code Review <gerrit@onap.org>
Thu, 20 Jul 2023 06:36:08 +0000 (06:36 +0000)
kubernetes/policy/components/policy-gui/templates/deployment.yaml
kubernetes/policy/components/policy-nexus/templates/deployment.yaml

index 7a573d0..69b5e37 100644 (file)
@@ -69,8 +69,7 @@ spec:
           env:
           - name: CLAMP_URL
             value: http://policy-clamp-runtime-acm:6969
-          ports:
-          - containerPort: {{ .Values.service.internalPort }}
+          ports: {{ include "common.containerPorts" . | nindent 12  }}
           # disable liveness probe when breakpoints set in debugger
           # so K8s doesn't restart unresponsive container
           {{- if eq .Values.liveness.enabled true }}
index b18be93..ec579d8 100755 (executable)
@@ -36,19 +36,18 @@ spec:
         - name: {{ include "common.name" . }}
           image: {{ include "repositoryGenerator.dockerHubRepository" . }}/{{ .Values.image }}
           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
-          ports:
-          - containerPort: {{ .Values.service.externalPort }}
+          ports: {{ include "common.containerPorts" . | nindent 12  }}
           {{- if eq .Values.liveness.enabled true }}
           livenessProbe:
             tcpSocket:
-              port: {{ .Values.service.externalPort }}
+              port: {{ .Values.service.internalPort }}
             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
             periodSeconds: {{ .Values.liveness.periodSeconds }}
           {{ end -}}
           readinessProbe:
             httpGet:
               path: {{ .Values.readiness.path }}
-              port: {{ .Values.service.externalPort }}
+              port: {{ .Values.service.internalPort }}
             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
             periodSeconds: {{ .Values.readiness.periodSeconds }}
           volumeMounts: