Skip to content

Commit

Permalink
modify: shell script
Browse files Browse the repository at this point in the history
  • Loading branch information
onestone9900 committed Jul 29, 2022
1 parent 89f2bc1 commit 66249b4
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ contexts:
### 리눅스

```shell
export KUBECONFIG_SAVED=$KUBECONFIG
export KUBECONFIG_SAVED="$KUBECONFIG"
```

### 윈도우 PowerShell
Expand All @@ -290,7 +290,7 @@ $Env:KUBECONFIG_SAVED=$ENV:KUBECONFIG
### 리눅스

```shell
export KUBECONFIG=$KUBECONFIG:config-demo:config-demo-2
export KUBECONFIG="${KUBECONFIG}:config-demo:config-demo-2"
```

### 윈도우 PowerShell
Expand Down Expand Up @@ -356,7 +356,7 @@ kubeconfig 파일들을 어떻게 병합하는지에 대한 상세정보는
### 리눅스

```shell
export KUBECONFIG=$KUBECONFIG:$HOME/.kube/config
export KUBECONFIG="${KUBECONFIG}:${HOME}/.kube/config"
```

### 윈도우 Powershell
Expand All @@ -379,7 +379,7 @@ kubectl config view
### 리눅스

```shell
export KUBECONFIG=$KUBECONFIG_SAVED
export KUBECONFIG="$KUBECONFIG_SAVED"
```

### 윈도우 PowerShell
Expand Down

0 comments on commit 66249b4

Please sign in to comment.