File tree Expand file tree Collapse file tree 4 files changed +6
-4
lines changed Expand file tree Collapse file tree 4 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -180,8 +180,8 @@ blobfuse-proxy-container:
180
180
181
181
.PHONY : install-blobfuse-proxy
182
182
install-blobfuse-proxy :
183
- kubectl apply -f ./deploy/blobfuse-proxy/blobfuse-proxy .yaml
183
+ kubectl apply -f ./deploy/blobfuse-proxy.yaml
184
184
185
185
.PHONY : uninstall-blobfuse-proxy
186
186
uninstall-blobfuse-proxy :
187
- kubectl delete -f ./deploy/blobfuse-proxy/blobfuse-proxy .yaml --ignore-not-found
187
+ kubectl delete -f ./deploy/blobfuse-proxy.yaml --ignore-not-found
File renamed without changes.
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ This guide shows how to install a blobfuse proxy on all agent nodes and the prox
9
9
### Step #1 . Install blobfuse-proxy on debian based agent nodes
10
10
> following daemonset would also install latest [ blobfuse] ( https://github.com/Azure/azure-storage-fuse ) version on the node by default.
11
11
``` console
12
- kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/blob-csi-driver/master/deploy/blobfuse-proxy/blobfuse-proxy .yaml
12
+ kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/blob-csi-driver/master/deploy/blobfuse-proxy.yaml
13
13
```
14
14
15
15
### Step #2 . Install Blob CSI driver with ` node.enableBlobfuseProxy=true ` helm chart setting
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ kubectl apply -f $repo/csi-blob-controller.yaml
42
42
if [[ " $# " -gt 1 ]]; then
43
43
if [[ " $2 " == * " blobfuse-proxy" * ]]; then
44
44
echo " set enable-blobfuse-proxy as true ..."
45
- kubectl apply -f ./deploy/blobfuse-proxy/blobfuse-proxy .yaml
45
+ kubectl apply -f ./deploy/blobfuse-proxy.yaml
46
46
if [[ " $2 " == * " local" * ]]; then
47
47
cat $repo /csi-blob-node.yaml | sed ' s/enable-blobfuse-proxy=false/enable-blobfuse-proxy=true/g' | kubectl apply -f -
48
48
else
@@ -51,5 +51,7 @@ if [[ "$#" -gt 1 ]]; then
51
51
else
52
52
kubectl apply -f $repo /csi-blob-node.yaml
53
53
fi
54
+ else
55
+ kubectl apply -f $repo /csi-blob-node.yaml
54
56
fi
55
57
echo ' Azure Blob Storage CSI driver installed successfully.'
You can’t perform that action at this time.
0 commit comments