forked from kubernetes/website
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ja-trans: tasks/debug-application-cluster/debug-stateful-set/ (kubern…
…etes#15282) * [ja] Fix translation of 'Persistent Volumes' (kubernetes#13848) s/永続化ボリューム/永続ボリューム/g * ja-trans: tasks/debug-application-cluster/debug-stateful-set/
- Loading branch information
Showing
1 changed file
with
40 additions
and
0 deletions.
There are no files selected for viewing
40 changes: 40 additions & 0 deletions
40
content/ja/docs/tasks/debug-application-cluster/debug-stateful-set.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,40 @@ | ||
--- | ||
title: StatefulSetのデバッグ | ||
content_template: templates/task | ||
--- | ||
|
||
{{% capture overview %}} | ||
|
||
このタスクでは、StatefulSetをデバッグする方法を説明します。 | ||
|
||
{{% /capture %}} | ||
|
||
{{% capture prerequisites %}} | ||
|
||
* Kubernetesクラスターが必要です。また、kubectlコマンドラインツールがクラスターと通信するように設定されている必要があります。 | ||
* 調べたいStatefulSetを実行しておきましょう。 | ||
|
||
{{% /capture %}} | ||
|
||
{{% capture steps %}} | ||
|
||
## StatefulSetのデバッグ | ||
|
||
StatefulSetに属し、ラベル`app=myapp`が設定されているすべてのPodを一覧表示するには、以下のコマンドを利用できます。 | ||
|
||
```shell | ||
kubectl get pods -l app=myapp | ||
``` | ||
|
||
Podが長期間`Unknown`または`Terminating`の状態になっていることがわかった場合は、それらを処理する方法について[StatefulSet Podsの削除](/docs/tasks/manage-stateful-set/delete-pods/)タスクを参照してください。 | ||
[Podのデバッグ](/docs/tasks/debug-application-cluster/debug-pod-replication-controller/)ガイドを使用して、StatefulSet内の個々のPodをデバッグできます。 | ||
|
||
{{% /capture %}} | ||
|
||
{{% capture whatsnext %}} | ||
|
||
[Init Containerのデバッグ](/docs/tasks/debug-application-cluster/debug-init-containers/)の詳細 | ||
|
||
{{% /capture %}} | ||
|
||
|