Files
athletic-map-deploy/platform/argocd-ingress.yaml
T

26 lines
621 B
YAML

# Exposição do ArgoCD via Traefik com TLS (Let's Encrypt)
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: argocd
namespace: argocd
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
spec:
ingressClassName: traefik
tls:
- hosts:
- argocd.athleticmap.influxdigital.com.br
secretName: argocd-tls
rules:
- host: argocd.athleticmap.influxdigital.com.br
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: argocd-server
port:
number: 80