Configuration for deploying a static Jekyll site to an LKE cluster.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

32 lines
716 B

---
apiVersion: cert-manager.io/v1
kind: ClusterIssuer
metadata:
name: certmanager-production-issuer
spec:
acme:
server: https://acme-v02.api.letsencrypt.org/directory
email: admin@jameslavender.com
privateKeySecretRef:
name: le-secret-prod
solvers:
- selectors:
http01:
ingress:
class: nginx
---
apiVersion: cert-manager.io/v1
kind: ClusterIssuer
metadata:
name: certmanager-staging-issuer
spec:
acme:
server: https://acme-staging-v02.api.letsencrypt.org/directory
email: admin@jameslavender.com
privateKeySecretRef:
name: le-secret-staging
solvers:
- selector:
http01:
ingress:
class: nginx