Advertisement
Guest User

Untitled

a guest
Mar 21st, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. apiVersion: certmanager.k8s.io/v1alpha1
  2. kind: Certificate
  3. metadata:
  4. name: example-com
  5. namespace: default
  6. spec:
  7. secretName: example-com-tls # <- Secret resource used to store certificate
  8. issuerRef:
  9. name: lets-prod # <- name of the issuer, created before
  10. commonName: '*.example.com'
  11. dnsNames:
  12. - example.com
  13. acme:
  14. config:
  15. - dns01:
  16. provider: route53-dns # <- name of the provider used for creating DNS records
  17. domains:
  18. - '*.example.com'
  19. - example.com
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement