add storage class and cluster issuer

This commit is contained in:
2025-11-05 15:55:34 -06:00
parent e1341af4d7
commit 0812c2323d
3 changed files with 49 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
apiVersion: cert-manager.io/v1
kind: ClusterIssuer
metadata:
name: lets-encrypt-staging
spec:
acme:
server: https://acme-staging-v02.api.letsencrypt.org/directory
privateKeySecretRef:
name: lets-encrypt-staging-account-key
solvers:
- http01:
ingress:
ingressClassName: nginx
---
apiVersion: cert-manager.io/v1
kind: ClusterIssuer
metadata:
name: lets-encrypt-prod
spec:
acme:
server: https://acme-v02.api.letsencrypt.org/directory
privateKeySecretRef:
name: lets-encrypt-prod-account-key
solvers:
- http01:
ingress:
ingressClassName: nginx