Files
homelab/infra/kubernetes/platform/traefik/certificate-internal.yaml
Julia McGhee 11c9c0f1bc Add Certificate resources for internal IngressRoutes
cert-manager annotations don't work on Traefik IngressRoutes — explicit
Certificate resources are needed to trigger Let's Encrypt issuance.
2026-03-20 19:26:25 +00:00

39 lines
737 B
YAML

apiVersion: cert-manager.io/v1
kind: Certificate
metadata:
name: argocd-tls
namespace: platform
spec:
secretName: argocd-tls
issuerRef:
name: letsencrypt-production
kind: ClusterIssuer
dnsNames:
- argocd.coreworlds.io
---
apiVersion: cert-manager.io/v1
kind: Certificate
metadata:
name: grafana-tls
namespace: platform
spec:
secretName: grafana-tls
issuerRef:
name: letsencrypt-production
kind: ClusterIssuer
dnsNames:
- grafana.coreworlds.io
---
apiVersion: cert-manager.io/v1
kind: Certificate
metadata:
name: longhorn-tls
namespace: platform
spec:
secretName: longhorn-tls
issuerRef:
name: letsencrypt-production
kind: ClusterIssuer
dnsNames:
- longhorn.coreworlds.io