このページは、まだ日本語ではご利用いただけません。翻訳中です。
旧バージョンのドキュメントを参照しています。 最新のドキュメントはこちらをご参照ください。
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"
}
]
}
]