Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下を使用して、kubernetes クラスターで実行されているすべてのポッドのリストを取得できます。
kubectl get pods
特定のポッドで実行されているすべてのコンテナーを取得するにはどうすればよいですか?
describe次のコマンドを使用できます。
describe
kubectl describe pod [podname]
これにより、ポッド内にあるコンテナーが他の情報とともに指定されます。