>kubectl get pod NAME READY STATUS RESTARTS AGE sample-pod 0/1 ContainerCreating 0 8s
作成を開始してからしばらく経つと、コンテナが起動する。
1 2 3
>kubectl get pods NAME READY STATUS RESTARTS AGE sample-pod 1/1 Running 0 4m11s
Pod の状態を出力するときに、-o wide オプションを付与すると、表示内容を増やすことができる。
1 2 3
D:\working\temp\kubernetes\pod>kubectl get pods sample-pod -o wide NAME READY STATUS RESTARTS AGE IP NODE NOMINATED NODE READINESS GATES sample-pod 1/1 Running 0 68m 172.17.0.6 minikube <none> <none>
-o オプションは表示内容のフォーマットを変更するオプションで以下のフォーマットに対応している。
1 2 3 4 5 6 7 8 9
>kubectl get pods sample-pod --help ... -o, --output='': Output format. One of: json|yaml|wide|name|custom-columns=...|custom-columns-file=...|go-template=...|go-template-file=...|jsonpath=...|jsonpath-file=... See custom columns [http://kubernetes.io/docs/user-guide/kubectl-overview/#custom-columns], golang template [http://golang.org/pkg/text/template/#pkg-overview] and jsonpath template [http://kubernetes.io/docs/user-guide/jsonpath]. --output-watch-events=false: Output watch event objects when --watch or --watch-only is used. Existing objects are ...