core/cert-manager.yaml
Guillaume B.B. Van Hemmen 96a10eee29 #0000 - Add cert-manager setup, license, and update README
Introduce a `ClusterIssuer` resource for cert-manager to enable Let's Encrypt integration with Traefik. Add an MIT license for the project and clarify the purpose of the repository in the README.
2024-12-19 14:32:26 +01:00

18 lines
572 B
YAML

apiVersion: cert-manager.io/v1
kind: ClusterIssuer
metadata:
name: acme-lets-encrypt-http
namespace: cert-issuer
spec:
acme:
email: acme@van-hemmen.com
# We use the staging server here for testing to avoid hitting
server: https://acme-v02.api.letsencrypt.org/directory
privateKeySecretRef:
# if not existing, it will register a new account and stores it
name: production-issuer-account-key
solvers:
- http01:
# The ingressClass used to create the necessary ingress routes
ingress:
class: traefik