25 lines
780 B
YAML
25 lines
780 B
YAML
apiVersion: cert-manager.io/v1alpha2
|
|
kind: ClusterIssuer
|
|
metadata:
|
|
name: letsencrypt
|
|
namespace: cert-manager
|
|
spec:
|
|
acme:
|
|
# You must replace this email address with your own.
|
|
# Let's Encrypt will use this to contact you about expiring
|
|
# certificates, and issues related to your account.
|
|
email: marchambault@badjware.dev
|
|
server: https://acme-v02.api.letsencrypt.org/directory
|
|
privateKeySecretRef:
|
|
# Secret resource that will be used to store the account's private key.
|
|
name: letsencrypt-cert
|
|
solvers:
|
|
- selector:
|
|
dnsZones:
|
|
- badjware.dev
|
|
dns01:
|
|
cnameStrategy: Follow
|
|
digitalocean:
|
|
tokenSecretRef:
|
|
name: digitalocean-api-key
|
|
key: access-token |