File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -99,6 +99,10 @@ Some examples are available [here](./examples/kubernetes).
99
99
These steps will cover how to install the Scaleway CSI driver in your Kubernetes
100
100
cluster, using Helm.
101
101
102
+ > [!WARNING]
103
+ > You should NOT install the Scaleway Block Volume CSI driver in a **Scaleway Kubernetes
104
+ > managed cluster (Kapsule / Kosmos)** as it is already installed and configured automatically.
105
+
102
106
#### Requirements
103
107
104
108
- A Kubernetes cluster running on Scaleway instances (v1.20+)
@@ -140,6 +144,16 @@ cluster, using Helm.
140
144
141
145
You should see the scaleway-csi-controller and the scaleway-csi-node pods.
142
146
147
+ > [!IMPORTANT]
148
+ > When upgrading an existing installation, you MUST upgrade CRDs before calling helm upgrade command.
149
+ > CRDs are not updated by Helm. See [HIP-0011](https://github.com/helm/community/blob/main/hips/hip-0011.md) for details.
150
+ >
151
+ > ```bash
152
+ > helm repo update
153
+ > helm show crds scaleway/scaleway-csi | kubectl apply --server-side --force-conflicts -f -
154
+ > helm upgrade --namespace kube-system --reuse-values scaleway-csi scaleway/scaleway-csi
155
+ > ```
156
+
143
157
# # Development
144
158
145
159
# ## Build
You can’t perform that action at this time.
0 commit comments