Guillaume B.B. Van Hemmen
96a10eee29
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.
18 lines
572 B
YAML
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
|