Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

26
cmctl Normal file
View File

@@ -0,0 +1,26 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# cmctl
> Manage cert-manager resources inside your cluster.
> Check cert signing status, approve/deny requests, and issue new certificate requests.
> More information: <https://cert-manager.io/docs/usage/cmctl/>.
- Check if the cert-manager API is ready:
`cmctl check api`
- Check the status of a certificate:
`cmctl status certificate {{cert_name}}`
- Create a new certificate request based on an existing certificate:
`cmctl create certificaterequest my-cr --from-certificate-file {{cert.yaml}}`
- 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}}`