Skip to content

Commit

Permalink
Bumping versions:
Browse files Browse the repository at this point in the history
make NEW_VERSION=v3.4.0 bump-version
make NEW_CHART_VERSION=v1.1.0 bump-chart-version
  • Loading branch information
alakae committed Sep 30, 2022
1 parent 43101ed commit 71c5c6f
Show file tree
Hide file tree
Showing 6 changed files with 432 additions and 16 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
## unreleased

## v3.4.0 - 2022.09.30
* Update all side-cars.

## v3.3.0 - 2022.09.22
Expand Down
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ secret `my-pvc-luks-key`.
## Releases

The cloudscale.ch CSI plugin follows [semantic versioning](https://semver.org/).
The current version is: **`v3.3.0`**.
The current version is: **`v3.4.0`**.

* Bug fixes will be released as a `PATCH` update.
* New features (such as CSI spec bumps) will be released as a `MINOR` update.
Expand All @@ -80,11 +80,11 @@ We recommend using the latest cloudscale.ch CSI driver compatible with your Kube
| 1.17 | v1.3.1 | v3.0.0 |
| 1.18 | v1.3.1 | v3.3.0 |
| 1.19 | v1.3.1 | v3.3.0 |
| 1.20 | v2.0.0 | v3.3.0 |
| 1.21 | v2.0.0 | v3.3.0 |
| 1.22 | v3.1.0 | v3.3.0 |
| 1.23 | v3.1.0 | v3.3.0 |
| 1.24 | v3.1.0 | v3.3.0 |
| 1.20 | v2.0.0 | v3.4.0 |
| 1.21 | v2.0.0 | v3.4.0 |
| 1.22 | v3.1.0 | v3.4.0 |
| 1.23 | v3.1.0 | v3.4.0 |
| 1.24 | v3.1.0 | v3.4.0 |

**Requirements:**

Expand Down Expand Up @@ -180,10 +180,10 @@ $ helm install -g -n kube-system --set controller.image.tag=dev --set node.image
Before you continue, be sure to checkout to a [tagged
release](https://github.com/cloudscale-ch/csi-cloudscale/releases).
Always use the [latest stable version](https://github.com/cloudscale-ch/csi-cloudscale/releases/latest)
For example, to use the latest stable version (`v3.3.0`) you can execute the following command:
For example, to use the latest stable version (`v3.4.0`) you can execute the following command:

```
$ kubectl apply -f https://raw.githubusercontent.com/cloudscale-ch/csi-cloudscale/master/deploy/kubernetes/releases/csi-cloudscale-v3.3.0.yaml
$ kubectl apply -f https://raw.githubusercontent.com/cloudscale-ch/csi-cloudscale/master/deploy/kubernetes/releases/csi-cloudscale-v3.4.0.yaml
```

The storage classes `cloudscale-volume-ssd` and `cloudscale-volume-bulk` will be created. The
Expand Down Expand Up @@ -389,15 +389,15 @@ $ git push origin

After it's merged to master, [create a new Github
release](https://github.com/cloudscale-ch/csi-cloudscale/releases/new) from
master with the version `v3.3.0` and then publish a new docker build:
master with the version `v3.4.0` and then publish a new docker build:

```
$ git checkout master
$ make publish
```

This will create a binary with version `v3.3.0` and docker image pushed to
`cloudscalech/cloudscale-csi-plugin:v3.3.0`
This will create a binary with version `v3.4.0` and docker image pushed to
`cloudscalech/cloudscale-csi-plugin:v3.4.0`

## Contributing

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v3.3.0
v3.4.0
4 changes: 2 additions & 2 deletions charts/csi-cloudscale/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: csi-cloudscale
description: A Container Storage Interface Driver for cloudscale.ch volumes.
type: application
version: 1.0.0
appVersion: "3.3.0"
version: 1.1.0
appVersion: "3.4.0"
home: https://github.com/cloudscale-ch/csi-cloudscale
sources:
- https://github.com/cloudscale-ch/csi-cloudscale.git
Expand Down
4 changes: 2 additions & 2 deletions charts/csi-cloudscale/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ controller:
image:
registry: quay.io
repository: cloudscalech/cloudscale-csi-plugin
tag: v3.3.0
tag: v3.4.0
pullPolicy: IfNotPresent
serviceAccountName:
resources: {}
Expand All @@ -99,7 +99,7 @@ node:
image:
registry: quay.io
repository: cloudscalech/cloudscale-csi-plugin
tag: v3.3.0
tag: v3.4.0
pullPolicy: IfNotPresent
tolerations: []
serviceAccountName:
Expand Down
Loading

0 comments on commit 71c5c6f

Please sign in to comment.