diff --git a/osm-seed/templates/osmcha-web/osmcha-web-deployment.yaml b/osm-seed/templates/osmcha-web/osmcha-web-deployment.yaml index 5dbf8ae9..81a86f9c 100644 --- a/osm-seed/templates/osmcha-web/osmcha-web-deployment.yaml +++ b/osm-seed/templates/osmcha-web/osmcha-web-deployment.yaml @@ -27,12 +27,12 @@ spec: image: "{{ .Values.osmchaWeb.image.name }}:{{ .Values.osmchaWeb.image.tag }}" ports: - name: http - containerPort: 8000 + containerPort: 5000 protocol: TCP livenessProbe: httpGet: path: / - port: 8000 + port: 5000 initialDelaySeconds: 600 # 10 min, because the compile process takes time. timeoutSeconds: 30 {{- if .Values.osmchaWeb.resources.enabled }} diff --git a/osm-seed/templates/osmcha-web/osmcha-web-service.yaml b/osm-seed/templates/osmcha-web/osmcha-web-service.yaml index 24c62053..a454c3e0 100644 --- a/osm-seed/templates/osmcha-web/osmcha-web-service.yaml +++ b/osm-seed/templates/osmcha-web/osmcha-web-service.yaml @@ -27,12 +27,12 @@ spec: type: {{ .Values.serviceType }} ports: - port: 80 - targetPort: 8000 + targetPort: 5000 protocol: TCP name: http {{- if and (eq .Values.serviceType "LoadBalancer") .Values.AWS_SSL_ARN }} - port: 443 - targetPort: 8000 + targetPort: 5000 protocol: TCP name: https {{- end }}