2020-05-02 17:41:31 +00:00
|
|
|
apiVersion: v1
|
|
|
|
kind: Namespace
|
|
|
|
metadata:
|
|
|
|
name: cert-manager
|
|
|
|
labels:
|
|
|
|
certmanager.k8s.io/disable-validation: "true"
|
2020-05-07 13:15:01 +00:00
|
|
|
|
2020-05-02 17:41:31 +00:00
|
|
|
---
|
2020-05-07 13:15:01 +00:00
|
|
|
|
2021-10-16 07:10:00 +00:00
|
|
|
apiVersion: cert-manager.io/v1
|
2020-05-02 17:41:31 +00:00
|
|
|
kind: ClusterIssuer
|
|
|
|
metadata:
|
|
|
|
name: letsencrypt
|
|
|
|
spec:
|
|
|
|
acme:
|
|
|
|
server: https://acme-v02.api.letsencrypt.org/directory
|
|
|
|
email: letsencrypt@marcusnoble.co.uk
|
|
|
|
privateKeySecretRef:
|
|
|
|
name: letsencrypt
|
|
|
|
solvers:
|
2021-10-16 07:10:00 +00:00
|
|
|
- http01:
|
2020-05-02 17:41:31 +00:00
|
|
|
ingress:
|
2021-10-16 08:46:06 +00:00
|
|
|
class: nginx
|