cert-manager Reference

Kip Landergren

(Updated: )

My cheat sheet for cert-manager covering helpful resources, kubernetes cluster installation, and common kubectl commands.

Contents

Resources

Installation

A helm chart is available, but I chose to apply the cert-manager definitions directly by first downloading the YAML manifest file from the GitHub release page, modifying it as needed, and applying directly.

The official installation instructions for kubernetes essentially boil down to:

Backup

$ kubectl get --all-namespaces -oyaml issuer,clusterissuer,cert > backup.yaml

Commands

Check on cert-manager Pods:

kubectl get pods -n cert-manager --watch

Frequently Asked Questions

What’s the difference between an Issuer and a ClusterIssuer?

Roughly, a ClusterIssuer can issue certificates across namespaces.