diff --git a/k8s/app-deployment.yaml b/k8s/app-deployment.yaml index e27cdb8..1982478 100644 --- a/k8s/app-deployment.yaml +++ b/k8s/app-deployment.yaml @@ -17,14 +17,14 @@ spec: spec: initContainers: - name: db-migrate - image: your-ghcr-username/aprs-app:latest # Placeholder, will be set by CI + image: aprs/aprs-app:latest # Placeholder, will be set by CI command: ["/app/bin/migrate"] envFrom: - secretRef: name: aprs-secrets containers: - name: aprs-app - image: your-ghcr-username/aprs-app:latest # Placeholder, will be set by CI + image: aprs/aprs-app:latest # Placeholder, will be set by CI ports: - containerPort: 4000 # Default Phoenix port envFrom: diff --git a/k8s/postgres-deployment.yaml b/k8s/postgres-deployment.yaml index ffe3f6b..653037f 100644 --- a/k8s/postgres-deployment.yaml +++ b/k8s/postgres-deployment.yaml @@ -17,7 +17,7 @@ spec: spec: containers: - name: postgres - image: postgres:15 # Using a recent version + image: postgres:16 ports: - containerPort: 5432 env: