File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change 1+ # kubectl certificate
2+
3+ > Manage certificate signing requests.
4+ > More information: < https://kubernetes.io/docs/reference/kubectl/generated/kubectl_certificate > .
5+
6+ - Approve a certificate signing request by name:
7+
8+ ` kubectl certificate approve {{csr_name}} `
9+
10+ - Deny a certificate signing request by name:
11+
12+ ` kubectl certificate deny {{csr_name}} `
13+
14+ - Approve a certificate signing request defined in a manifest file:
15+
16+ ` kubectl certificate approve --filename {{path/to/csr.yaml}} `
17+
18+ - Deny a certificate signing request defined in a manifest file:
19+
20+ ` kubectl certificate deny --filename {{path/to/csr.yaml}} `
21+
22+ - Force reapproval of a certificate signing request that was previously denied:
23+
24+ ` kubectl certificate approve --force {{csr_name}} `
You can’t perform that action at this time.
0 commit comments