diff --git a/k8s/helm/gateway/templates/gateway-deployment.yaml b/k8s/helm/gateway/templates/gateway-deployment.yaml index ec5751b..6f2a165 100644 --- a/k8s/helm/gateway/templates/gateway-deployment.yaml +++ b/k8s/helm/gateway/templates/gateway-deployment.yaml @@ -20,13 +20,13 @@ spec: - name: api-gateway image: ghcr.io/privateaim/node-hub-api-adapter:latest imagePullPolicy: IfNotPresent # Maybe "Always" during debug - readinessProbe: - httpGet: - path: /healthz - port: 5000 ports: - containerPort: 5000 name: http-result-srv + readinessProbe: + httpGet: + path: /healthz + port: http-result-srv env: - name: API_CLIENT_ID value: {{ .Values.env.API_CLIENT_ID | default "hub-adapter" | quote }} diff --git a/k8s/manifests/gateway-deployment.yaml b/k8s/manifests/gateway-deployment.yaml index c0801ad..2a9d164 100644 --- a/k8s/manifests/gateway-deployment.yaml +++ b/k8s/manifests/gateway-deployment.yaml @@ -20,12 +20,13 @@ spec: - name: api-gateway image: ghcr.io/privateaim/node-hub-api-adapter:latest imagePullPolicy: IfNotPresent # Maybe "Always" during debug + ports: + - containerPort: 5000 + name: http-result-srv readinessProbe: httpGet: path: /healthz - port: 5000 - ports: - - containerPort: 5000 + port: http-result-srv env: - name: API_CLIENT_ID value: "hub-adapter"