Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.63 KB | None | 0 0
  1. apiVersion: certmanager.k8s.io/v1alpha1
  2. kind: Certificate
  3. metadata:
  4.   name: production-crt
  5. spec:
  6.   secret: production-crt
  7.   issuer: letsencrypt-prod
  8.   domains:
  9.   - host: www.google.com
  10.     acme:
  11.       http-01:
  12.        # if the ingress resource already exists, we modify it to add our path
  13.         # instead of creating our own ingress resource (to support gce). if
  14.         # this is blank, a temporary ingress resource will be used
  15.         ingress: google-com
  16.   - host: twitter.com
  17.     acme:
  18.       http-01:
  19.         ingressClass: nginx
  20.   - host: yahoo.com
  21.     acme:
  22.       dns-01:
  23.         clouddns: {}
  24. status:
  25.   state: Pending
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement