Skip to content

Commit

Permalink
Merge pull request #86 from jingxu97/patch-2
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
k8s-ci-robot authored Oct 12, 2020
2 parents 897abed + 71082b1 commit 5d8bf8c
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,17 @@ Recommended K8s Version: 1.18

CSI-proxy is currently in Alpha status

## Installation

csi-proxy.exe can be installed and run as binary or run as a Windows service on each Windows node. See the following as an example to run CSI Proxy as a web service.
```
$flags = "-windows-service -log_file=\etc\kubernetes\logs\csi-proxy.log -logtostderr=false"
sc.exe create csiproxy binPath= "\etc\kuberentes\node\bin\csi-proxy.exe $flags"
sc.exe failure csiproxy reset= 0 actions= restart/10000
sc.exe start csiproxy
```
If you are using kube-up to start a Windows cluster, node startup script will automatically run csi-proxy as a service. For GKE 1.18+, csi-proxy will be installed automatically.

## Usage

### Command line options
Expand Down

0 comments on commit 5d8bf8c

Please sign in to comment.