cert-manager annotations don't work on Traefik IngressRoutes — explicit Certificate resources are needed to trigger Let's Encrypt issuance.
39 lines
737 B
YAML
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
|