Advertisement
just_insane

letsencrypt.yaml

Apr 14th, 2019
313
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.76 KB | None | 0 0
  1. apiVersion: certmanager.k8s.io/v1alpha1
  2. kind: ClusterIssuer
  3. metadata:
  4.   name: letsencrypt-production
  5. spec:
  6.   acme:
  7.    # You must replace this email address with your own.
  8.     # Let's Encrypt will use this to contact you about expiring
  9.     # certificates, and issues related to your account.
  10.     email: changeme
  11.     server: https://acme-v02.api.letsencrypt.org/directory
  12.     privateKeySecretRef:
  13.      # Secret resource used to store the account's private key.
  14.       name: letsencrypt-production
  15.     # Enable the HTTP01 challenge mechanism for this Issuer
  16.     dns01:
  17.       providers:
  18.       - name: prod-cloudflare
  19.         cloudflare:
  20.           email: changeme
  21.           apiKeySecretRef:
  22.             name: cloudflare-api-key-secret
  23.             key: changeme
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement