Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,10 @@ Some examples are available [here](./examples/kubernetes).
These steps will cover how to install the Scaleway CSI driver in your Kubernetes
cluster, using Helm.

> [!WARNING]
> You should NOT install the Scaleway Block Volume CSI driver in a **Scaleway Kubernetes
> managed cluster (Kapsule / Kosmos)** as it is already installed and configured automatically.

#### Requirements

- A Kubernetes cluster running on Scaleway instances (v1.20+)
Expand Down Expand Up @@ -140,6 +144,16 @@ cluster, using Helm.

You should see the scaleway-csi-controller and the scaleway-csi-node pods.

> [!IMPORTANT]
> When upgrading an existing installation, you MUST upgrade CRDs before calling helm upgrade command.
> CRDs are not updated by Helm. See [HIP-0011](https://github.com/helm/community/blob/main/hips/hip-0011.md) for details.
>
> ```bash
> helm repo update
> helm show crds scaleway/scaleway-csi | kubectl apply --server-side --force-conflicts -f -
> helm upgrade --namespace kube-system --reuse-values scaleway-csi scaleway/scaleway-csi
> ```

## Development

### Build
Expand Down
Loading