fix: Prod deployment fixes
All checks were successful
Deploy to Staging / Build Images (push) Successful in 32s
Deploy to Staging / Deploy to Staging (push) Successful in 22s
Deploy to Staging / Verify Staging (push) Successful in 3m21s
Deploy to Staging / Notify Staging Ready (push) Successful in 34s
Deploy to Staging / Notify Staging Failure (push) Has been skipped

This commit is contained in:
Eric Gullickson
2026-02-04 21:31:39 -06:00
parent af1edd9ec6
commit bac4d340bc
2 changed files with 14 additions and 0 deletions

View File

@@ -165,6 +165,14 @@ jobs:
echo "frontend_id=$FRONTEND_ID" >> $GITHUB_OUTPUT echo "frontend_id=$FRONTEND_ID" >> $GITHUB_OUTPUT
echo "backend_id=$BACKEND_ID" >> $GITHUB_OUTPUT echo "backend_id=$BACKEND_ID" >> $GITHUB_OUTPUT
- name: Start shared services
run: |
cd "$DEPLOY_PATH"
# Start shared infrastructure services (database, cache, logging)
# These persist across blue-green deployments
docker compose -f $COMPOSE_FILE -f $COMPOSE_BLUE_GREEN -f $COMPOSE_PROD up -d \
mvp-postgres mvp-redis mvp-loki mvp-promtail mvp-grafana
- name: Start target stack - name: Start target stack
run: | run: |
cd "$DEPLOY_PATH" cd "$DEPLOY_PATH"

View File

@@ -4,6 +4,8 @@ server:
http_listen_port: 3100 http_listen_port: 3100
ingester: ingester:
wal:
dir: /loki/wal
lifecycler: lifecycler:
ring: ring:
kvstore: kvstore:
@@ -28,5 +30,9 @@ storage_config:
filesystem: filesystem:
directory: /loki/chunks directory: /loki/chunks
compactor:
working_directory: /loki/compactor
shared_store: filesystem
limits_config: limits_config:
retention_period: 720h # 30 days retention_period: 720h # 30 days