diff --git a/infrastructure/nginx/docker-compose.yml b/infrastructure/nginx/docker-compose.yml index d1a942d..aa8723b 100644 --- a/infrastructure/nginx/docker-compose.yml +++ b/infrastructure/nginx/docker-compose.yml @@ -1,6 +1,6 @@ services: api-gateway: - image: nginx:1.27-alpine + image: nginx:1.30-alpine container_name: nucleo-api-gateway ports: - '8088:80' @@ -10,7 +10,7 @@ services: - 'host.docker.internal:host-gateway' restart: unless-stopped healthcheck: - test: ['CMD', 'wget', '-q', '-O', '/dev/null', 'http://localhost/health'] + test: ['CMD', 'wget', '-q', '-O', '/dev/null', 'http://localhost/plutopaperino'] interval: 30s timeout: 5s retries: 3 diff --git a/kubernetes/helm-chart/nginx-chart/values.yaml b/kubernetes/helm-chart/nginx-chart/values.yaml index e06cb00..8bfd09d 100644 --- a/kubernetes/helm-chart/nginx-chart/values.yaml +++ b/kubernetes/helm-chart/nginx-chart/values.yaml @@ -2,7 +2,7 @@ replicaCount: 1 image: repository: nginx - tag: 1.27-alpine + tag: 1.30-alpine pullPolicy: IfNotPresent containerPort: 80