add: argocd installer & port forwarding

This commit is contained in:
Namonay
2025-12-15 16:17:30 +01:00
parent f941e6333c
commit f76b7ef2bd
4 changed files with 41 additions and 4 deletions

24
p3/confs/ingress.yml Normal file
View File

@ -0,0 +1,24 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: argocd-ingress
namespace: argocd
annotations:
nginx.ingress.kubernetes.io/backend-protocol: "HTTPS"
nginx.ingress.kubernetes.io/ssl-passthrough: "true"
nginx.ingress.kubernetes.io/force-ssl-redirect: "true"
nginx.ingress.kubernetes.io/ssl-verify: "off"
nginx.ingress.kubernetes.io/ssl-verify-depth: "1"
spec:
ingressClassName: nginx
rules:
- host: argocd.localhost
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: argocd-server
port:
name: https