From 0ae62d9e8b2eaf37f4296b245fbf66bc0964b1f6 Mon Sep 17 00:00:00 2001 From: ATM Platform Date: Tue, 16 Jun 2026 12:56:19 +0000 Subject: [PATCH] feat(piloto): backend Spring Boot na porta 8083 (img 1.1) --- tenants/piloto/30-apps-stubs.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tenants/piloto/30-apps-stubs.yaml b/tenants/piloto/30-apps-stubs.yaml index 5b5d5cb..3725f1a 100644 --- a/tenants/piloto/30-apps-stubs.yaml +++ b/tenants/piloto/30-apps-stubs.yaml @@ -14,14 +14,14 @@ spec: spec: containers: - name: backend - image: docker.io/library/athletic-map-backend:1.0 + image: docker.io/library/athletic-map-backend:1.1 imagePullPolicy: Never env: - { name: ATM_JWK_SET_URI, value: "http://keycloak:8080/realms/athleticmap/protocol/openid-connect/certs" } - { name: ATM_ISSUER, value: "https://auth.187.77.37.184.nip.io/realms/athleticmap" } - ports: [{ containerPort: 8080 }] + ports: [{ containerPort: 8083 }] readinessProbe: - httpGet: { path: /api/public/health, port: 8080 } + httpGet: { path: /api/public/health, port: 8083 } initialDelaySeconds: 20 periodSeconds: 10 failureThreshold: 24 @@ -31,7 +31,7 @@ kind: Service metadata: { name: backend, namespace: piloto-prod } spec: selector: { app: backend } - ports: [{ port: 80, targetPort: 8080 }] + ports: [{ port: 80, targetPort: 8083 }] --- apiVersion: apps/v1 kind: Deployment