Skip to content

Commit 1bebbbe

Browse files
committed
📝 doc: release notes for v1.10.0
1 parent 1a1cb27 commit 1bebbbe

File tree

6 files changed

+17
-10
lines changed

6 files changed

+17
-10
lines changed

CHANGELOG-1.X.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [v1.10.0] - 2026-02-18
4+
5+
The CSI driver has switched to a new Outscale SDK with a better handling of API errors, backoff and throttling, and is based on the 1.12 CSI specification.
6+
It includes fixes for CSI edge cases, and no new feature.
7+
8+
No changes since v1.10.0-rc.1
9+
310
## [v1.10.0-rc.1] - 2026-02-11
411

512
No changes since v1.10.0-beta.1

docs/helm.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# osc-bsu-csi-driver
22

3-
![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![AppVersion: v1.9.0](https://img.shields.io/badge/AppVersion-v1.9.0-informational?style=flat-square)
3+
![Version: 2.0.1](https://img.shields.io/badge/Version-2.0.1-informational?style=flat-square) ![AppVersion: v1.10.0](https://img.shields.io/badge/AppVersion-v1.10.0-informational?style=flat-square)
44

55
A Helm chart for the Outscale BSU CSI Driver
66

@@ -60,7 +60,7 @@ Kubernetes: `>=1.20`
6060
| driver.imagePullPolicy | string | `"IfNotPresent"` | Container image pull policy |
6161
| driver.maxBsuVolumes | string | `""` | Maximum number of volumes that can be attached to a node, autocomputed by default (see [Docs](https://docs.outscale.com/en/userguide/About-Volumes.html)) |
6262
| driver.name | string | `"bsu.csi.outscale.com"` | |
63-
| driver.tag | string | `"v1.9.0"` | Container image tag to deploy |
63+
| driver.tag | string | `"v1.10.0"` | Container image tag to deploy |
6464
| imagePullSecrets | list | `[]` | Specify image pull secrets |
6565
| logs.format | string | `"text"` | Format of logs: text or json (requires CSI driver v1.9.0 or later) |
6666
| logs.verbosity | int | `3` | Verbosity level of the plugin |
@@ -86,7 +86,7 @@ Kubernetes: `>=1.20`
8686
| sidecars.exporter.image | string | `"outscale/csi-snapshot-exporter"` | |
8787
| sidecars.exporter.metricsPort | string | `"8093"` | Port of the metrics endpoint |
8888
| sidecars.exporter.resources | object | `{}` | Sidecar resources. If not set, the top-level resources will be used. |
89-
| sidecars.exporter.tag | string | `"v0.1.0"` | |
89+
| sidecars.exporter.tag | string | `"v0.2.0"` | |
9090
| sidecars.kubeAPI.QPS | int | `20` | Maximum allowed number of queries per second to the Kubernetes API |
9191
| sidecars.kubeAPI.burst | int | `100` | Allowed burst over QPS |
9292
| sidecars.leaderElection | object | `{"leaseDuration":null,"renewDeadline":null,"retryPeriod":null}` | leaderElection config for all sidecars |

docs/release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
1. In [CHANGELOG-1.x.md](CHANGELOG-1.x.md), add a new vX.Y.Z-helm version
66
2. Update the chart and driver versions in `helm/osc-bsu-csi-driver/Chart.yaml`
7-
3. Update the driver version in `helm/osc-bsu-csi-driver/values.yaml`
7+
3. Update the driver version in `helm/osc-bsu-csi-driver/values.yaml` and `helm/osc-bsu-csi-driver/helm_test.go`
88
4. Generate helm docs:
99
```shell
1010
make helm-docs

helm/osc-bsu-csi-driver/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: v1
2-
appVersion: "v1.9.0"
2+
appVersion: "v1.10.0"
33
name: osc-bsu-csi-driver
44
description: A Helm chart for the Outscale BSU CSI Driver
5-
version: 2.0.0
5+
version: 2.0.1
66
kubeVersion: ">=1.20"
77
home: https://github.com/outscale/osc-bsu-csi-driver
88
sources:

helm/osc-bsu-csi-driver/helm_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ func TestHelmTemplate_Deployment(t *testing.T) {
9595
assert.Equal(t, int32(2), *dep.Spec.Replicas)
9696
require.Len(t, dep.Spec.Template.Spec.Containers, 6)
9797
manager := dep.Spec.Template.Spec.Containers[0]
98-
assert.Equal(t, "outscale/osc-bsu-csi-driver:v1.9.0", manager.Image)
98+
assert.Equal(t, "outscale/osc-bsu-csi-driver:v1.10.0", manager.Image)
9999
assert.Equal(t, []string{
100100
"controller",
101101
"--endpoint=$(CSI_ENDPOINT)",
@@ -403,7 +403,7 @@ func TestHelmTemplate_DaemonSet(t *testing.T) {
403403
dep := getDaemonSet(t)
404404
require.Len(t, dep.Spec.Template.Spec.Containers, 3)
405405
manager := dep.Spec.Template.Spec.Containers[0]
406-
assert.Equal(t, "outscale/osc-bsu-csi-driver:v1.9.0", manager.Image)
406+
assert.Equal(t, "outscale/osc-bsu-csi-driver:v1.10.0", manager.Image)
407407
assert.Equal(t, []string{
408408
"node",
409409
"--endpoint=$(CSI_ENDPOINT)",

helm/osc-bsu-csi-driver/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ driver:
2121
# -- Container image to use
2222
image: outscale/osc-bsu-csi-driver
2323
# -- Container image tag to deploy
24-
tag: v1.9.0
24+
tag: v1.10.0
2525
# -- Container image pull policy
2626
imagePullPolicy: IfNotPresent
2727

@@ -227,7 +227,7 @@ sidecars:
227227
tag: "v2.15.0"
228228
exporter:
229229
image: outscale/csi-snapshot-exporter
230-
tag: "v0.1.0"
230+
tag: "v0.2.0"
231231
# -- Port of the metrics endpoint
232232
metricsPort: "8093"
233233
additionalArgs: []

0 commit comments

Comments
 (0)