From 68a237894a8799ccfcd7dcd07b744ebd19b192a4 Mon Sep 17 00:00:00 2001 From: andyzhangx Date: Tue, 21 Nov 2023 12:54:13 +0000 Subject: [PATCH] doc: update blobfuse-proxy support on coreos --- charts/README.md | 2 +- deploy/blobfuse-proxy/README.md | 8 ++++---- docs/install-csi-driver-master.md | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/charts/README.md b/charts/README.md index 6aa0a47de..043b9b91b 100644 --- a/charts/README.md +++ b/charts/README.md @@ -5,7 +5,7 @@ ### Tips - configure with [blobfuse-proxy](../deploy/blobfuse-proxy) to make blobfuse mount still available after driver restart - > note: [blobfuse-proxy](../deploy/blobfuse-proxy) is only available on **debian** OS based agent node (not available on OpenShift) + > Note: [blobfuse-proxy](../deploy/blobfuse-proxy) is supported on CoreOS(OpenShift) from v1.23.2 - specify `node.enableBlobfuseProxy=true` together with [blobfuse-proxy](../deploy/blobfuse-proxy) - run controller on control plane node: `--set controller.runOnControlPlane=true` - set replica of controller as `1`: `--set controller.replicas=1` diff --git a/deploy/blobfuse-proxy/README.md b/deploy/blobfuse-proxy/README.md index 988b78975..0952af918 100644 --- a/deploy/blobfuse-proxy/README.md +++ b/deploy/blobfuse-proxy/README.md @@ -9,19 +9,19 @@ This guide shows how to install a blobfuse proxy on all agent nodes and the prox - helm install ```console helm repo add blob-csi-driver https://raw.githubusercontent.com/kubernetes-sigs/blob-csi-driver/master/charts -helm install blob-csi-driver blob-csi-driver/blob-csi-driver --namespace kube-system --version v1.22.0 --set node.enableBlobfuseProxy=true +helm install blob-csi-driver blob-csi-driver/blob-csi-driver --namespace kube-system --version v1.23.1 --set node.enableBlobfuseProxy=true ``` - kubectl install ```console -curl -skSL https://raw.githubusercontent.com/kubernetes-sigs/blob-csi-driver/v1.22.0/deploy/install-driver.sh | bash -s v1.22.0 blobfuse-proxy -- +curl -skSL https://raw.githubusercontent.com/kubernetes-sigs/blob-csi-driver/v1.23.1/deploy/install-driver.sh | bash -s v1.23.1 blobfuse-proxy -- ``` ### Enable blobfuse proxy on existing Blob CSI driver - install blobfuse proxy daemonset -> following config only works on debian based agent node +> blobfuse proxy is supported on CoreOS(OpenShift) from v1.23.2 ```console -kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/blob-csi-driver/master/deploy/v1.22.0/blobfuse-proxy.yaml +kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/blob-csi-driver/master/deploy/v1.23.1/blobfuse-proxy.yaml ``` - set `enable-blobfuse-proxy=true` in existing `csi-blob-node` daemonset manually (default is `false`) ```console diff --git a/docs/install-csi-driver-master.md b/docs/install-csi-driver-master.md index dff7e4b31..a1eafd21e 100644 --- a/docs/install-csi-driver-master.md +++ b/docs/install-csi-driver-master.md @@ -1,5 +1,5 @@ # Install Azure Blob Storage CSI driver master version on a kubernetes cluster -> `blobfuse-proxy` is only available for debian based agent nodes, remove `blobfuse-proxy` parameter in installation steps if it's not applicable. +> `blobfuse-proxy` is supported on CoreOS(OpenShift) from v1.23.2 > If you have already installed Helm, you can also use it to install this driver. Please check [Installation with Helm](../charts/README.md).