Skip to content

Instantly share code, notes, and snippets.

@kyfelipe
Created May 13, 2021 14:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kyfelipe/784029365f40536a6d548da168cc3b80 to your computer and use it in GitHub Desktop.
Save kyfelipe/784029365f40536a6d548da168cc3b80 to your computer and use it in GitHub Desktop.
apiVersion: cert-manager.io/v1
kind: ClusterIssuer
metadata:
name: letsencrypt-staging
spec:
acme:
email: lcortes@vertigo.com.br
server: https://acme-staging-v02.api.letsencrypt.org/directory
privateKeySecretRef:
name: acme-staging-issuer-account-key
solvers:
- http01:
ingress:
class: nginx
- http01:
ingress:
class: kong
---
apiVersion: cert-manager.io/v1
kind: ClusterIssuer
metadata:
name: letsencrypt-production
spec:
acme:
email: lcortes@vertigo.com.br
server: https://acme-v02.api.letsencrypt.org/directory
privateKeySecretRef:
name: acme-production-issuer-account-key
solvers:
- http01:
ingress:
class: nginx
- http01:
ingress:
class: kong
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment