Merge pull request #20100 from oke-py/ja-link-2

update link to /ja/docs/concepts/workloads/pods/pod-lifecycle/
This commit is contained in:
Kubernetes Prow Robot
2020-04-30 20:30:05 -07:00
committed by GitHub
9 changed files with 19 additions and 19 deletions
@@ -10,7 +10,7 @@ _フィールドセレクター(Field Selectors)_ は、1つかそれ以上の
* `metadata.namespace!=default`
* `status.phase=Pending`
下記の`kubectl`コマンドは、[`status.phase`](/docs/concepts/workloads/pods/pod-lifecycle/#pod-phase)フィールドの値が`Running`である全てのPodを選択します。
下記の`kubectl`コマンドは、[`status.phase`](/ja/docs/concepts/workloads/pods/pod-lifecycle/#pod-phase)フィールドの値が`Running`である全てのPodを選択します。
```shell
kubectl get pods --field-selector status.phase=Running