add cert manager
This commit is contained in:
13286
deploy/cert-manager/cert-manager.yaml
Normal file
13286
deploy/cert-manager/cert-manager.yaml
Normal file
File diff suppressed because it is too large
Load Diff
29
deploy/cert-manager/issuer.yaml
Normal file
29
deploy/cert-manager/issuer.yaml
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
apiVersion: cert-manager.io/v1
|
||||||
|
kind: ClusterIssuer
|
||||||
|
metadata:
|
||||||
|
name: letsencrypt-staging
|
||||||
|
spec:
|
||||||
|
acme:
|
||||||
|
email: hello@beatrice.wtf
|
||||||
|
server: https://acme-staging-v02.api.letsencrypt.org/directory
|
||||||
|
privateKeySecretRef:
|
||||||
|
name: acme-staging-secret
|
||||||
|
solvers:
|
||||||
|
- http01:
|
||||||
|
ingress:
|
||||||
|
class: nginx
|
||||||
|
---
|
||||||
|
apiVersion: cert-manager.io/v1
|
||||||
|
kind: ClusterIssuer
|
||||||
|
metadata:
|
||||||
|
name: letsencrypt-prod
|
||||||
|
spec:
|
||||||
|
acme:
|
||||||
|
email: hello@beatrice.wtf
|
||||||
|
server: https://acme-v02.api.letsencrypt.org/directory
|
||||||
|
privateKeySecretRef:
|
||||||
|
name: acme-prod-secret
|
||||||
|
solvers:
|
||||||
|
- http01:
|
||||||
|
ingress:
|
||||||
|
class: nginx
|
||||||
3
deploy/cert-manager/kustomization.yaml
Normal file
3
deploy/cert-manager/kustomization.yaml
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
resources:
|
||||||
|
- cert-manager.yaml
|
||||||
|
- issuer.yaml
|
||||||
Reference in New Issue
Block a user