Skip to content

Commit 394df3a

Browse files
committed
Update references to old cli args
1 parent e7c1df0 commit 394df3a

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,7 @@ If you are using kube-up to start a Windows cluster, node startup script will au
7676

7777
### Command line options
7878

79-
* `--kubelet-csi-plugins-path`: This is the prefix path of the Kubelet plugin directory in the host file system (`C:\var\lib\kubelet` is used by default).
80-
81-
* `--kubelet-pod-path`: This is the prefix path of the kubelet pod directory in the host file system (`C:\var\lib\kubelet` is used by default).
79+
* `--kubelet-path`: This is the prefix path of the kubelet path directory in the host file system (`C:\var\lib\kubelet` is used by default).
8280

8381
### Setup for CSI Driver Deployment
8482

docs/DEVELOPMENT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ git fetch; git pull --rebase origin $BRANCH
113113

114114
# terminal 1 (build and start CSI proxy)
115115
go build -v -a -o ./bin/csi-proxy.exe ./cmd/csi-proxy
116-
.\bin\csi-proxy.exe --kubelet-csi-plugins-path $pwd --kubelet-pod-path $pwd --v=5
116+
.\bin\csi-proxy.exe --v=5
117117

118118
# terminal 2 (run E2E tests)
119119
go test -v .\integrationtests\ -run TestVolumeAPIs

scripts/e2e-runner.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ go build -v -a -o ./build/csi-proxy-api-gen ./cmd/csi-proxy-api-gen
3636
Write-Output "starting csi-proxy"
3737
$csiproxy = Start-Job -Name CSIProxy -ScriptBlock {
3838
cd $HOME/go/src/github.com/kubernetes-csi/csi-proxy
39-
.\bin\csi-proxy.exe --kubelet-csi-plugins-path $pwd --kubelet-pod-path $pwd --v=5
39+
.\bin\csi-proxy.exe --v=5
4040
};
4141
Start-Sleep -Seconds 10;
4242

0 commit comments

Comments
 (0)