Skip to content

Instantly share code, notes, and snippets.

@malagant
malagant / gist:a1fc2906b60f19b3d7934625d77e898a
Created September 2, 2020 10:56
Setup cert-manager for microk8s
microk8s enable helm3 ingress
microk8s kubectl create namespace cert-manager
microk8s helm3 repo add jetstack https://charts.jetstack.io
microk8s helm3 repo update
microk8s helm3 install cert-manager jetstack/cert-manager \
--namespace cert-manager \
--set installCRDs=true \
--set ingressShim.defaultIssuerName=letsencrypt-production \
--set ingressShim.defaultIssuerKind=ClusterIssuer \