LinuxCommandLibrary

cmctl

A CLI tool that can help you to manage cert-manager resources inside your cluster.

TLDR

Check if the cert-manager API is ready

$ cmctl check api
copy


Check the status of a certificate
$ cmctl status certificate [cert_name]
copy


Create a new certificate request based on an existing certificate
$ cmctl create certificaterequest my-cr --from-certificate-file [cert.yaml]
copy


Create a new certificate request, fetch the signed certificate, and set a maximum wait time
$ cmctl create certificaterequest my-cr --from-certificate-file [cert.yaml] --fetch-certificate --timeout [20m]
copy

Copied to clipboard