CKA EXAM QS-14 2025
- Ingress now
- Oct 20
- 1 min read
Question 14:
Verify the cert-manager application which has been deployed to your cluster.
using kubectl create a list of all cert-manager Custom Resource
Definitions(CRDs) and save it to ~/resources.yaml
you must be kubectl's default output format
Do not set an output format.
Using kubectl, extract the documentation for subject specification field of the
certificate custom Resource and save it to ~/subject.yaml
====================================================
Answer:
#kubectl get crds |grep cert-manager > ~/resources.yaml
#kubectl explain certificate.spec.subject > ~/subject.yaml




Comments