KubernetesでPodの一覧を表示する方法を紹介します。
以下のようにkubectlの「get」コマンドを使用します。
1 |
kubectl get pod |
試してみます。
1 2 3 4 5 |
root@controlplane:~# kubectl get pod NAME READY STATUS RESTARTS AGE nginx 1/1 Running 0 62s redis 1/1 Running 0 18s root@controlplane:~# |