Fix nginx issues
Some checks failed
Podman Rootless Demo / test-backend (push) Has been skipped
Podman Rootless Demo / test-frontend (push) Has been skipped
Podman Rootless Demo / build-backend (push) Has been skipped
Podman Rootless Demo / build-frontend (push) Has been skipped
Podman Rootless Demo / deploy-prod (push) Failing after 2m0s

This commit is contained in:
continuist 2025-09-20 21:56:32 -04:00
parent a34a32d241
commit 8e2a5236ac
2 changed files with 41 additions and 16 deletions

View file

@ -240,30 +240,50 @@ jobs:
--password-stdin \
"${{ secrets.REGISTRY_HOST }}"
- name: Pull production images
- name: Pull production images (optional but faster on play)
run: |
podman --remote pull "$REGISTRY_HOST/$APP_NAME/sharenet-backend-api-postgres:$IMAGE_TAG"
podman --remote pull "$REGISTRY_HOST/$APP_NAME/sharenet-frontend:$IMAGE_TAG"
- name: Render nginx.conf and put on host (no unshare)
# RENDER nginx.conf FROM REPO AND COPY TO HOST (no unshare)
- name: Render nginx.conf and write to host
run: |
set -euo pipefail
apk add --no-cache gettext >/dev/null # envsubst
# Render template locally in the job container
apk add --no-cache gettext >/dev/null # provides envsubst
# Render with your CI env (PROD_* vars)
envsubst < nginx/nginx.conf > /tmp/nginx.conf
# Write it to the host via a remote Podman helper container.
# Run as uid:gid 1001:1001 so writes match prod-services ownership.
# Copy to host via remote Podman bind-mount; keep prod-service uid/gid
podman --remote run --rm -i \
--userns=keep-id \
-v /opt/sharenet/nginx:/host-nginx:rw \
alpine:3.20 sh -c 'install -D -m 0644 /dev/stdin /host-nginx/nginx.conf' \
< /tmp/nginx.conf
- name: Install envsubst (Alpine)
run: apk add --no-cache gettext
- name: Deploy production pod
# TRY ZERO-DOWNTIME RELOAD FIRST
- name: Reload in-pod Nginx (or restart on failure)
continue-on-error: true
run: |
# Process the pod template with environment variables
set -euo pipefail
podman --remote exec sharenet-production-pod-nginx nginx -t
podman --remote exec sharenet-production-pod-nginx nginx -s reload
- name: Fallback restart Nginx container if reload failed
if: failure()
run: |
set -euo pipefail
podman --remote restart sharenet-production-pod-nginx
# (Re)APPLY THE POD (ensures new images/config picked up)
- name: Recreate pod (down & play)
run: |
set -euo pipefail
podman --remote kube down sharenet-production-pod || true
# Render your pod manifest (uses same $ENV as before)
envsubst < deploy/prod-pod.yml | podman --remote kube play -
# VERIFY
- name: Verify in-pod nginx is healthy
run: |
set -euo pipefail
curl -sS -D- http://127.0.0.1:18080/healthz

View file

@ -1,6 +1,7 @@
user nginx;
worker_processes auto;
pid /var/run/nginx.pid;
events { worker_connections 1024; }
http {
@ -20,18 +21,22 @@ http {
# frontend default
location / {
proxy_pass http://127.0.0.1:${PROD_FRONTEND_PORT};
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Connection "";
proxy_pass http://127.0.0.1:${PROD_FRONTEND_PORT};
}
# backend API
location /api/ {
proxy_pass http://127.0.0.1:${PROD_BACKEND_PORT}/;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Connection "";
proxy_pass http://127.0.0.1:${PROD_BACKEND_PORT}/;
}
}
}