From 23d3032ed6abf5a69d080f4accc3139d442976f8 Mon Sep 17 00:00:00 2001 From: Greg Date: Tue, 1 Jul 2025 11:07:37 -0700 Subject: [PATCH] fix: Add develop branch trigger to deploy-dev workflow - Deploy to Development now triggers on develop branch pushes - This enables the auto-promotion pipeline to work correctly - Also fixed webhook ingress to use nginx class --- .github/workflows/deploy-dev.yml | 2 +- manifests/webhook/webhook-ingress.yaml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy-dev.yml b/.github/workflows/deploy-dev.yml index 98bca95..73c3b39 100644 --- a/.github/workflows/deploy-dev.yml +++ b/.github/workflows/deploy-dev.yml @@ -2,7 +2,7 @@ name: Deploy to Development on: push: - branches: [ main, master ] + branches: [ main, master, develop ] paths: - 'src/**' - 'Dockerfile' diff --git a/manifests/webhook/webhook-ingress.yaml b/manifests/webhook/webhook-ingress.yaml index 17249bf..8ba6372 100644 --- a/manifests/webhook/webhook-ingress.yaml +++ b/manifests/webhook/webhook-ingress.yaml @@ -25,6 +25,7 @@ metadata: nginx.ingress.kubernetes.io/force-ssl-redirect: "true" cert-manager.io/cluster-issuer: "letsencrypt-prod" # Adjust to your cert issuer spec: + ingressClassName: nginx tls: - hosts: - webhook.wa.darknex.us