Skip to content

Commit 7ea1e8e

Browse files
authored
Update README.md
1 parent fceeaaa commit 7ea1e8e

File tree

1 file changed

+21
-30
lines changed

1 file changed

+21
-30
lines changed

charts/README.md

Lines changed: 21 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,41 @@
11
#### Breaking change
2-
Since `v0.7.0`, driver name changed from `blobfuse.csi.azure.com` to `blob.csi.azure.com`, volume created by `v0.6.0`(or prior version) could not be mounted by `v0.7.0` driver. If you have volumes created by `v0.6.0` version, just keep the driver running in your cluster.
2+
From `v0.7.0`, driver name changed from `blobfuse.csi.azure.com` to `blob.csi.azure.com`, volume created by `v0.6.0`(or prior version) could not be mounted by `v0.7.0` driver. If you have volumes created by `v0.6.0` version, DO NOT upgrade to `v0.7.0` or higher version.
33

4-
# Installation with Helm 3
5-
6-
Quick start instructions for the setup and configuration of Azure Blob Storage CSI driver using Helm.
4+
# Install CSI driver with Helm 3
75

86
## Prerequisites
9-
107
- [install Helm](https://helm.sh/docs/intro/quickstart/#install-helm)
118

12-
## Install latest CSI Driver via `helm install`
13-
9+
## install latest version
1410
```console
15-
$ cd $GOPATH/src/sigs.k8s.io/blob-csi-driver/charts/latest
16-
$ helm package blob-csi-driver
17-
$ helm install blob-csi-driver blob-csi-driver-latest.tgz --namespace kube-system
11+
helm repo add blob-csi-driver https://raw.githubusercontent.com/kubernetes-sigs/blob-csi-driver/master/charts
12+
helm install blob-csi-driver blob-csi-driver/blob-csi-driver --namespace kube-system
1813
```
19-
20-
## Install latest CSI Driver on Azure Stack via `helm install`
2114

15+
## install on Azure Stack
2216
```console
23-
$ cd $GOPATH/src/sigs.k8s.io/blob-csi-driver/charts/latest
24-
$ helm package blob-csi-driver
25-
$ helm install blob-csi-driver blob-csi-driver-latest.tgz --namespace kube-system --set cloud=AzureStackCloud
17+
helm install blob-csi-driver blob-csi-driver/blob-csi-driver --namespace kube-system --set cloud=AzureStackCloud
2618
```
2719

28-
### Install a specific version
29-
20+
### install a specific version
3021
```console
31-
$ helm repo add blob-csi-driver https://raw.githubusercontent.com/kubernetes-sigs/blob-csi-driver/master/charts
32-
$ helm install blob-csi-driver blob-csi-driver/blob-csi-driver --namespace kube-system --version v0.11.0
22+
helm repo add blob-csi-driver https://raw.githubusercontent.com/kubernetes-sigs/blob-csi-driver/master/charts
23+
helm install blob-csi-driver blob-csi-driver/blob-csi-driver --namespace kube-system --version v0.10.0
3324
```
34-
35-
### Search for all available chart versions
36-
```console
37-
$ helm search repo -l blob-csi-driver/
38-
```
3925

40-
## Uninstall
26+
### search for all available chart versions
27+
```console
28+
helm search repo -l blob-csi-driver
29+
```
4130

31+
## uninstall CSI driver
4232
```console
43-
$ helm uninstall blob-csi-driver -n kube-system
44-
```
45-
## The Latest Helm Chart Configuration
33+
helm uninstall blob-csi-driver -n kube-system
34+
```
35+
36+
## latest chart configuration
4637

47-
The following table lists the configurable parameters of the latest Azure Blob Storage CSI driver chart and their default values.
38+
The following table lists the configurable parameters of the latest Azure Blob Storage CSI driver chart and default values.
4839

4940
| Parameter | Description | Default |
5041
|---------------------------------------------------|------------------------------------------------------------|-------------------------------------------------------------------|
@@ -70,6 +61,6 @@ The following table lists the configurable parameters of the latest Azure Blob S
7061
| `kubelet.linuxPath` | configure the kubelet path for Linux node | `/var/lib/kubelet` |
7162
| `cloud` | the cloud environment the driver is running on | AzurePublicCloud |
7263

73-
## Troubleshooting
64+
## troubleshooting
7465
- Add `--wait -v=5 --debug` in `helm install` command to get detailed error
7566
- Use `kubectl describe` to acquire more info

0 commit comments

Comments
 (0)