0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【kubectl】pod内を確認するコマンド

Posted at

概要

kubectlで対象のpod内へ向けてコマンドを叩くことができるので、備忘録として記す。

公式

公式には以下のような構文を提示している。

kubectl exec [POD] -- [COMMAND]

実践

これをそのまま、実行する。
事例は以下の通りである。COMMANDの箇所にはLinuxにて確認するような一般的なコマンドを入れる。

事例

pwd.command

$ kubectl exec -it test-pod-123-456-789 -- pwd
tail.command
$ kubectl exec -it test-pod-123-456-789 -- tail -n 20 logs

まとめ

(公式のまんまやればいいだけ、といえばそれまでだが)備忘録としてまとめてみた。
いちいちpodにログインしなくても、対象の中身をコマンドで確認できるので、覚えておくと良さそう◎

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?