Skip to content

Commit 2f10e75

Browse files
committed
osc-bsu-csi-driver: release v1.1.0
1 parent 60b7226 commit 2f10e75

File tree

6 files changed

+19
-8
lines changed

6 files changed

+19
-8
lines changed

CHANGELOG-1.X.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
11
# Changelog
2+
3+
## [v1.1.0]
4+
### Features
5+
* Support encryption on volumes ([#85](https://github.com/outscale-dev/osc-bsu-csi-driver/issues/85))
6+
* Add alternative to generate the Kubernetes secret using helm ([#370](https://github.com/outscale-dev/osc-bsu-csi-driver/pull/371))
7+
* Add logs about request cache ([#475](https://github.com/outscale-dev/osc-bsu-csi-driver/pull/475))
8+
### Bugfixes
9+
* Fix the Iops regarding of the storage class parameter iopsPerGb, Outscale maximum iops and Outscale ratio iops/Gb ([#386](https://github.com/outscale-dev/osc-bsu-csi-driver/issues/386), [#394](https://github.com/outscale-dev/osc-bsu-csi-driver/issues/386))
10+
* Fix idempotency on ControllerUnpublishVolume ([#409](https://github.com/outscale-dev/osc-bsu-csi-driver/issues/409))
11+
* Fix idempotency on DeleteVolume and DeleteSnapshot ([#448](https://github.com/outscale-dev/osc-bsu-csi-driver/issues/448))
212
## [v1.0.0]
313
> **_NOTE:_** If you want to migrate from v0.X.X to this version, please read the migration process otherwise you will loose the management of your current PVC
414
### Breaking changes

docs/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ The Outscale Block Storage Unit Container Storage Interface (CSI) Driver provide
1616
| v0.0.15 | [v1.5.0](https://github.com/container-storage-interface/spec/releases/tag/v1.5.0) | 1.20 | 1.23 |
1717
| v0.1.0 | [v1.5.0](https://github.com/container-storage-interface/spec/releases/tag/v1.5.0) | 1.20 | 1.23 |
1818
| v1.0.0 | [v1.5.0](https://github.com/container-storage-interface/spec/releases/tag/v1.5.0) | 1.20 | 1.23 |
19+
| v1.1.0 | [v1.5.0](https://github.com/container-storage-interface/spec/releases/tag/v1.5.0) | 1.20 | 1.23 |
1920

2021
## Features
2122
The following CSI gRPC calls are implemented:

docs/deploy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ export OSC_SECRET_KEY=XXXXX
1818
export OSC_REGION=XXXXX
1919

2020
## set the secrets
21-
curl https://raw.githubusercontent.com/outscale-dev/osc-bsu-csi-driver/v1.0.0/deploy/kubernetes/secret.yaml > secret.yaml
21+
curl https://raw.githubusercontent.com/outscale-dev/osc-bsu-csi-driver/v1.1.0/deploy/kubernetes/secret.yaml > secret.yaml
2222
cat secret.yaml | \
2323
sed "s/secret_key: \"\"/secret_key: \"$OSC_SECRET_KEY\"/g" | \
2424
sed "s/access_key: \"\"/access_key: \"$OSC_ACCESS_KEY\"/g" > osc-secret.yaml
2525
kubectl delete -f osc-secret.yaml --namespace=kube-system
2626
kubectl apply -f osc-secret.yaml --namespace=kube-system
2727

2828
## deploy the pod
29-
git clone git@github.com:outscale-dev/osc-bsu-csi-driver.git -b v1.0.0
29+
git clone git@github.com:outscale-dev/osc-bsu-csi-driver.git -b v1.1.0
3030
cd osc-bsu-csi-driver
3131
helm uninstall osc-bsu-csi-driver --namespace kube-system
3232
helm install osc-bsu-csi-driver ./osc-bsu-csi-driver \

docs/helm.md

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

3-
![Version: 1.0.0](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square) ![AppVersion: v1.0.0](https://img.shields.io/badge/AppVersion-v1.0.0-informational?style=flat-square)
3+
![Version: 1.1.0](https://img.shields.io/badge/Version-1.1.0-informational?style=flat-square) ![AppVersion: v1.1.0](https://img.shields.io/badge/AppVersion-v1.1.0-informational?style=flat-square)
44

55
A Helm chart for Outscale BSU CSI Driver
66

@@ -41,7 +41,7 @@ Kubernetes: `>=1.14.0-0`
4141
| extraVolumeTags | object | `{}` | Add extra tags on volume |
4242
| image.pullPolicy | string | `"IfNotPresent"` | Container pull policy |
4343
| image.repository | string | `"outscale/osc-bsu-csi-driver"` | Container image to use |
44-
| image.tag | string | `"v1.0.0"` | Container image tag to deploy |
44+
| image.tag | string | `"v1.1.0"` | Container image tag to deploy |
4545
| imagePullSecrets | list | `[]` | Specify image pull secrets |
4646
| maxBsuVolumes | string | `"25"` | Maximum volume to attach to a node (see [Docs](https://docs.outscale.com/en/userguide/About-Volumes.html)) |
4747
| nameOverride | string | `""` | Override name of the app (instead of `osc-bsu-csi-driver`) |

osc-bsu-csi-driver/Chart.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
apiVersion: v1
2-
appVersion: "v1.0.0"
2+
appVersion: "v1.1.0"
33
name: osc-bsu-csi-driver
44
description: A Helm chart for Outscale BSU CSI Driver
5-
version: 1.0.0
6-
kubeVersion: ">=1.14.0-0"
5+
version: 1.1.0
6+
kubeVersion: ">=1.20"
77
home: https://github.com/outscale-dev/osc-bsu-csi-driver
88
sources:
99
- https://github.com/outscale-dev/osc-bsu-csi-driver

osc-bsu-csi-driver/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ image:
99
# -- Container image to use
1010
repository: outscale/osc-bsu-csi-driver
1111
# -- Container image tag to deploy
12-
tag: v1.0.0
12+
tag: v1.1.0
1313
# -- Container pull policy
1414
pullPolicy: IfNotPresent
1515

0 commit comments

Comments
 (0)