cert-manager installation

This commit is contained in:
Tobias Brunner 2020-01-25 20:06:29 +01:00
parent 4f375e285c
commit 3b92aa08cd
2 changed files with 6562 additions and 0 deletions

File diff suppressed because it is too large Load diff

36
cert-manager/issuers.yaml Normal file
View file

@ -0,0 +1,36 @@
apiVersion: cert-manager.io/v1alpha2
kind: ClusterIssuer
metadata:
name: letsencrypt-prod
spec:
acme:
# The ACME server URL
server: https://acme-v02.api.letsencrypt.org/directory
# Email address used for ACME registration
email: tobias@tobru.ch
# Name of a secret used to store the ACME account private key
privateKeySecretRef:
name: letsencrypt-prod
# An empty selector will 'match' all Certificate resources that
# reference this Issuer.
solvers:
- selector: {}
http01:
ingress:
class: nginx
---
apiVersion: cert-manager.io/v1alpha2
kind: ClusterIssuer
metadata:
name: letsencrypt-staging
spec:
acme:
server: https://acme-staging-v02.api.letsencrypt.org/directory
email: tobias@tobru.ch
privateKeySecretRef:
name: letsencrypt-staging
solvers:
- selector: {}
http01:
ingress:
class: nginx