Created
May 24, 2018 06:14
-
-
Save erikaulin/bc82615e08c07b6ec46f61378fa2e465 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: certmanager.k8s.io/v1alpha1 | |
kind: ClusterIssuer | |
metadata: | |
name: letsencrypt-prod | |
spec: | |
acme: | |
# The ACME server URL | |
server: https://acme-v01.api.letsencrypt.org/directory | |
# Email address used for ACME registration | |
email: [email protected] | |
# Name of a secret used to store the ACME account private key | |
privateKeySecretRef: | |
name: letsencrypt-prod | |
# Enable the DNS-01 challenge provider | |
dns01: | |
providers: | |
- name: cloudflare | |
cloudflare: | |
email: [email protected] | |
apiKeySecretRef: | |
name: cloudflare | |
key: api |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment