Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 909 Bytes

README.md

File metadata and controls

32 lines (22 loc) · 909 Bytes

Let's Encrypt

This Helm chart will install Let's Encrpyt (docs).

💡 Helm chart will be installed in cert-manager namespace and must be installed after cert-manager chart

How to deploy manually

# checks the Kubernetes objects generated from the chart
helm template letsencrypt . -f values.yaml \
  --namespace cert-manager > temp.yaml

# installs the chart with helm
helm upgrade --install letsencrypt . -f values.yaml \
  --set registration.emailAddress=mypersonal@email.address \
  --namespace cert-manager

# checks installation is ok
kubectl get ClusterIssuers -n cert-manager

# if needed, deletes the chart
helm delete letsencrypt -n cert-manager

How to investigate

Check existing resources

kubectl get Issuers,ClusterIssuers,Certificates,CertificateRequests,Orders,Challenges --all-namespaces