Add argocd-server service patch to ArgoCD kustomization

This commit is contained in:
Nikholas Pcenicni
2026-03-27 03:52:57 -04:00
parent 0bfafbac32
commit dda831cb82
2 changed files with 21 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
apiVersion: v1
kind: Service
metadata:
name: argocd-server
namespace: argocd
spec:
type: NodePort
ports:
- name: http
port: 80
protocol: TCP
targetPort: 8080
nodePort: 30080
- name: https
port: 443
protocol: TCP
targetPort: 8080
nodePort: 30443

View File

@@ -5,4 +5,6 @@ resources:
- namespace.yaml - namespace.yaml
- https://raw.githubusercontent.com/argoproj/argo-cd/v2.14.7/manifests/install.yaml - https://raw.githubusercontent.com/argoproj/argo-cd/v2.14.7/manifests/install.yaml
- default-appproject.yaml - default-appproject.yaml
patchesStrategicMerge:
- argocd-server-service-patch.yaml