-
Notifications
You must be signed in to change notification settings - Fork 14.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Translate overview/working-with-objects/field-selectors.md in Japanese (#14350) #14535
Merged
k8s-ci-robot
merged 3 commits into
kubernetes:dev-1.14-ja.1
from
kakts:ja-trans-concept-field-selectors
Jun 5, 2019
Merged
Changes from 2 commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
64 changes: 64 additions & 0 deletions
64
content/ja/docs/concepts/overview/working-with-objects/field-selectors.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
--- | ||
title: フィールドセレクター(Field Selectors) | ||
weight: 60 | ||
--- | ||
|
||
_フィールドセレクター(Field Selectors)_ は、1つかそれ以上のリソースフィールドの値を元に[Kubernetesリソースを選択](/docs/concepts/overview/working-with-objects/kubernetes-objects)するためのものです。 | ||
フィールドセレクタークエリの例は以下の通りです。 | ||
|
||
* `metadata.name=my-service` | ||
* `metadata.namespace!=default` | ||
* `status.phase=Pending` | ||
|
||
下記の`kubectl`コマンドは、[`status.phase`](/docs/concepts/workloads/pods/pod-lifecycle/#pod-phase)フィールドの値が`Running`である全てのPodを選択します。 | ||
|
||
```shell | ||
kubectl get pods --field-selector status.phase=Running | ||
``` | ||
|
||
{{< note >}} | ||
フィールドセレクターは本質的にリソースの*フィルタ*となります。デフォルトでは、セレクター/フィルターが指定されていない場合は、全てのタイプのリソースが取得されます。これは、下記の2つの`kubectl`クエリが同じであることを意味します。 | ||
|
||
```shell | ||
kubectl get pods | ||
kubectl get pods --field-selector "" | ||
``` | ||
{{< /note >}} | ||
|
||
## サポートされているフィールド | ||
サポートされているフィールドセレクターはKubernetesリソースタイプによって異なります。全てのリソースタイプは`metadata.name`と`metadata.namespace`フィールドをサポートしています。サポートされていないフィールドセレクターの使用をするとエラーとなります。 | ||
例えば以下の通りです。 | ||
|
||
```shell | ||
kubectl get ingress --field-selector foo.bar=baz | ||
``` | ||
|
||
``` | ||
Error from server (BadRequest): Unable to find "ingresses" that match label selector "", field selector "foo.bar=baz": "foo.bar" is not a known field selector: only "metadata.name", "metadata.namespace" | ||
``` | ||
|
||
## サポートされているオペレーター | ||
|
||
ユーザーは、`=`、`==`や`!=`といったオペレーターをフィールドセレクターと組み合わせて使用できます。(`=`と`==`は同義) | ||
例として、下記の`kubectl`コマンドは`default`ネームスペースに属していない全てのKubernetes Serviceを選択します。 | ||
|
||
```shell | ||
kubectl get services --field-selector metadata.namespace!=default | ||
``` | ||
|
||
## 連結されたセレクター | ||
[ラベル](/docs/concepts/overview/working-with-objects/labels)や他のセレクターと同様に、フィールドセレクターはコンマ区切りのリストとして連結することができます。 | ||
下記の`kubectl`コマンドは、`status.phase`が`Runnning`でなく、かつ`spec.restartPolicy`フィールドが`Always`に等しいような全てのPodを選択します。 | ||
|
||
```shell | ||
kubectl get pods --field-selector=status.phase!=Running,spec.restartPolicy=Always | ||
``` | ||
|
||
## 複数のリソースタイプ | ||
|
||
ユーザーは複数のリソースタイプにまたがったフィールドセレクターを利用できます。 | ||
下記の`kubectl`コマンドは、`default`ネームスペースに属していない全てのStatefulSetとServiceを選択します。 | ||
|
||
```shell | ||
kubectl get statefulsets,services --field-selector metadata.namespace!=default | ||
``` |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
こちら修正もれてました。対応します。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
修正しました。