Add ArgoCD ingress configuration and update server insecure flag to true

This commit is contained in:
Marco van Zijl 2025-05-09 18:48:27 +02:00
parent e04490b884
commit 921be474f9
2 changed files with 20 additions and 1 deletions

19
argocd-ingress.yaml Normal file
View File

@ -0,0 +1,19 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: argocd-ingress
namespace: argocd
annotations:
traefik.ingress.kubernetes.io/router.entrypoints: web
spec:
rules:
- host: argocd.noxxos.nl
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: argocd-server
port:
name: http

View File

@ -231,7 +231,7 @@ cluster:
server.disable.auth: "false"
server.enable.gzip: "true"
server.enable.proxy.extension: "false"
server.insecure: "false"
server.insecure: "true"
server.log.format: text
server.log.level: info
server.repo.server.strict.tls: "false"