From 7abd5065fbd66d5b4af8815cd4ad2ead51007ac8 Mon Sep 17 00:00:00 2001 From: Karan Parashar Date: Mon, 26 Jan 2026 20:38:41 +0530 Subject: [PATCH] bootstrap: Patch argocd server service --- bootstrap/argocd-server-nodeport-patch.yaml | 12 ++++++++++++ bootstrap/kustomization.yaml | 6 ++++++ 2 files changed, 18 insertions(+) create mode 100644 bootstrap/argocd-server-nodeport-patch.yaml diff --git a/bootstrap/argocd-server-nodeport-patch.yaml b/bootstrap/argocd-server-nodeport-patch.yaml new file mode 100644 index 0000000..83b34e9 --- /dev/null +++ b/bootstrap/argocd-server-nodeport-patch.yaml @@ -0,0 +1,12 @@ +apiVersion: v1 +kind: Service +metadata: + name: argocd-server +spec: + type: NodePort + ports: + - name: https + port: 443 + protocol: TCP + targetPort: 8080 + nodePort: 30443 diff --git a/bootstrap/kustomization.yaml b/bootstrap/kustomization.yaml index 16216b1..7db42ab 100644 --- a/bootstrap/kustomization.yaml +++ b/bootstrap/kustomization.yaml @@ -6,3 +6,9 @@ namespace: argocd resources: - https://raw.githubusercontent.com/argoproj/argo-cd/v3.2.6/manifests/install.yaml - argocd-root-app + +patches: + - target: + kind: Service + name: argocd-server + path: argocd-server-nodeport-patch.yaml