feat: add ArgoCD ingress and external-dns manifests

This commit is contained in:
Ryan Moon
2026-04-02 17:25:20 -05:00
parent ca98dd2d91
commit 10bb34e811
2 changed files with 86 additions and 0 deletions

21
argocd/ingress.yaml Normal file
View File

@@ -0,0 +1,21 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: argocd-server
namespace: argocd
annotations:
nginx.ingress.kubernetes.io/ssl-passthrough: "true"
nginx.ingress.kubernetes.io/backend-protocol: "HTTPS"
spec:
ingressClassName: nginx
rules:
- host: argocd.lunarfront.tech
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: argocd-server
port:
number: 443