You are browsing documentation for an older version. See the latest documentation here.
ControlPlane
ControlPlane
‘s status field contains invaluable information about managed Kong Ingress Controller deployments.
How to retrieve it
Assuming a ControlPlane
called kong
you can obtain its status using the following kubectl
command:
kubectl get controlplane kong -o jsonpath-as-json='{.status}'
Which should yield output similar to:
[
{
"conditions": [
{
"lastTransitionTime": "2024-03-22T18:17:00Z",
"message": "",
"observedGeneration": 3,
"reason": "Ready",
"status": "True",
"type": "Ready"
},
{
"lastTransitionTime": "2024-03-22T18:17:00Z",
"message": "pods for all Deployments are ready",
"observedGeneration": 3,
"reason": "PodsReady",
"status": "True",
"type": "Provisioned"
}
]
}
]