diff --git a/.github/workflows/deploy-postgres-prod.yml b/.github/workflows/deploy-postgres-prod.yml index 6d089bf..67d9be9 100644 --- a/.github/workflows/deploy-postgres-prod.yml +++ b/.github/workflows/deploy-postgres-prod.yml @@ -32,9 +32,6 @@ jobs: kubectl config set-context runner-context --cluster=microk8s --user=runner --namespace="$NAMESPACE" kubectl config use-context runner-context - - name: Apply PROD secrets - run: kubectl apply -f db/k8s/secrets/ - - name: Deploy PROD Postgres run: kubectl apply -f db/k8s/postgres/ diff --git a/.github/workflows/juntekim.yml b/.github/workflows/juntekim.yml index cdea3c0..4401602 100644 --- a/.github/workflows/juntekim.yml +++ b/.github/workflows/juntekim.yml @@ -37,7 +37,7 @@ jobs: run-on-k8s: runs-on: mealcraft-runners # <-- your ARC scale set label - needs: Push-to-docker-hub + needs: Push-to-juntekim-to-docker-hub steps: - uses: actions/checkout@v4 diff --git a/db/k8s/postgres/postgres-dev-stripe-to-invoice.yaml b/db/k8s/postgres/postgres-dev-stripe-to-invoice.yaml index 3016ae1..347ad93 100644 --- a/db/k8s/postgres/postgres-dev-stripe-to-invoice.yaml +++ b/db/k8s/postgres/postgres-dev-stripe-to-invoice.yaml @@ -39,17 +39,17 @@ spec: apiVersion: apps/v1 kind: Deployment metadata: - name: postgres + name: postgres-dev namespace: dev spec: replicas: 1 selector: matchLabels: - app: postgres + app: postgres-dev template: metadata: labels: - app: postgres + app: postgres-dev spec: containers: - name: postgres @@ -79,7 +79,7 @@ metadata: spec: type: ClusterIP selector: - app: postgres + app: postgres-dev ports: - port: 5432 targetPort: 5432