Forked from chukaofili/cert-manager-cluster-issuer.yaml
Created
May 21, 2021 23:18
-
-
Save stifydom/2c8c5c0bb7a63cd58bb039396fa9f9e9 to your computer and use it in GitHub Desktop.
cert-manager-cluster-issuer
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-staging | |
| spec: | |
| acme: | |
| server: https://acme-staging.api.letsencrypt.org/directory | |
| email: [your-email-goes-here] | |
| privateKeySecretRef: | |
| name: letsencrypt-staging | |
| http01: {} | |
| --- | |
| apiVersion: certmanager.k8s.io/v1alpha1 | |
| kind: ClusterIssuer | |
| metadata: | |
| name: letsencrypt-prod | |
| spec: | |
| acme: | |
| server: https://acme-v01.api.letsencrypt.org/directory | |
| email: [your-email-goes-here] | |
| privateKeySecretRef: | |
| name: letsencrypt-prod | |
| http01: {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment