Updata content/ja/docs/tasks/access-application-cluster/configure-access-multiple-clusters.md
parent
c9ed105f44
commit
624d15cdc4
|
@ -21,7 +21,9 @@ card:
|
||||||
## {{% heading "prerequisites" %}}
|
## {{% heading "prerequisites" %}}
|
||||||
|
|
||||||
|
|
||||||
{{< include "task-tutorial-prereqs.md" >}} {{< version-check >}}
|
{{< include "task-tutorial-prereqs.md" >}}
|
||||||
|
|
||||||
|
{{< glossary_tooltip text="kubectl" term_id="kubectl" >}}がインストールされているか確認するため、`kubectl version --client`を実行してください。kubectlのバージョンは、クラスタのAPIサーバの[1つ以内のバージョン](/ja/docs/setup/release/version-skew-policy/#kubectl)である必要があります。
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -306,7 +308,7 @@ export KUBECONFIG=$KUBECONFIG:$HOME/.kube/config
|
||||||
```
|
```
|
||||||
### Windows Powershell
|
### Windows Powershell
|
||||||
```shell
|
```shell
|
||||||
$Env:KUBECONFIG=($Env:KUBECONFIG;$HOME/.kube/config)
|
$Env:KUBECONFIG="$Env:KUBECONFIG;$HOME/.kube/config"
|
||||||
```
|
```
|
||||||
|
|
||||||
`KUBECONFIG`環境変数内のファイルからまとめられた設定情報を確認してください。`config-exercise`ディレクトリ内から、以下のコマンドを実行してください:
|
`KUBECONFIG`環境変数内のファイルからまとめられた設定情報を確認してください。`config-exercise`ディレクトリ内から、以下のコマンドを実行してください:
|
||||||
|
@ -319,11 +321,11 @@ kubectl config view
|
||||||
|
|
||||||
`KUBECONFIG`環境変数を元に戻してください。例えば:
|
`KUBECONFIG`環境変数を元に戻してください。例えば:
|
||||||
|
|
||||||
Linux:
|
### Linux:
|
||||||
```shell
|
```shell
|
||||||
export KUBECONFIG=$KUBECONFIG_SAVED
|
export KUBECONFIG=$KUBECONFIG_SAVED
|
||||||
```
|
```
|
||||||
Windows PowerShell
|
### Windows PowerShell
|
||||||
```shell
|
```shell
|
||||||
$Env:KUBECONFIG=$ENV:KUBECONFIG_SAVED
|
$Env:KUBECONFIG=$ENV:KUBECONFIG_SAVED
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue