summaryrefslogtreecommitdiff
path: root/f3s/argocd/ingress.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'f3s/argocd/ingress.yaml')
-rw-r--r--f3s/argocd/ingress.yaml26
1 files changed, 26 insertions, 0 deletions
diff --git a/f3s/argocd/ingress.yaml b/f3s/argocd/ingress.yaml
index b10c288..f87f475 100644
--- a/f3s/argocd/ingress.yaml
+++ b/f3s/argocd/ingress.yaml
@@ -22,3 +22,29 @@ spec:
name: argocd-server
port:
number: 80
+---
+# ArgoCD UI LAN Ingress
+apiVersion: networking.k8s.io/v1
+kind: Ingress
+metadata:
+ name: argocd-server-ingress-lan
+ namespace: cicd
+ annotations:
+ spec.ingressClassName: traefik
+ traefik.ingress.kubernetes.io/router.entrypoints: web,websecure
+spec:
+ tls:
+ - hosts:
+ - argocd.f3s.lan.buetow.org
+ secretName: f3s-lan-tls
+ rules:
+ - host: argocd.f3s.lan.buetow.org
+ http:
+ paths:
+ - path: /
+ pathType: Prefix
+ backend:
+ service:
+ name: argocd-server
+ port:
+ number: 80