Skip to content

Commit

Permalink
Bumping versions:
Browse files Browse the repository at this point in the history
make NEW_VERSION=v3.5.2 bump-version
make NEW_CHART_VERSION=v1.3.2 bump-chart-version
  • Loading branch information
alakae committed May 23, 2023
1 parent 1d6340d commit 459bda8
Show file tree
Hide file tree
Showing 6 changed files with 433 additions and 17 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.5.2 - 2023.05.23
* Bump golang.org/x/net

## v3.5.1 - 2023.05.10
Expand Down
24 changes: 12 additions & 12 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.5.1`**.
The current version is: **`v3.5.2`**.

* 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,12 +80,12 @@ 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.5.1 |
| 1.21 | v2.0.0 | v3.5.1 |
| 1.22 | v3.1.0 | v3.5.1 |
| 1.23 | v3.1.0 | v3.5.1 |
| 1.24 | v3.1.0 | v3.5.1 |
| 1.25 | v3.3.0 | v3.5.1 |
| 1.20 | v2.0.0 | v3.5.2 |
| 1.21 | v2.0.0 | v3.5.2 |
| 1.22 | v3.1.0 | v3.5.2 |
| 1.23 | v3.1.0 | v3.5.2 |
| 1.24 | v3.1.0 | v3.5.2 |
| 1.25 | v3.3.0 | v3.5.2 |

**Requirements:**

Expand Down Expand Up @@ -181,10 +181,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.5.1`) you can execute the following command:
For example, to use the latest stable version (`v3.5.2`) you can execute the following command:

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

The storage classes `cloudscale-volume-ssd` and `cloudscale-volume-bulk` will be created. The
Expand Down Expand Up @@ -398,15 +398,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.5.1` and then publish a new docker build:
master with the version `v3.5.2` and then publish a new docker build:

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

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

## Contributing

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v3.5.1
v3.5.2
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.3.1
appVersion: "3.5.1"
version: 1.3.2
appVersion: "3.5.2"
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.5.1
tag: v3.5.2
pullPolicy: IfNotPresent
serviceAccountName:
resources: {}
Expand All @@ -99,7 +99,7 @@ node:
image:
registry: quay.io
repository: cloudscalech/cloudscale-csi-plugin
tag: v3.5.1
tag: v3.5.2
pullPolicy: IfNotPresent
nodeSelector: {}
tolerations: []
Expand Down
Loading

0 comments on commit 459bda8

Please sign in to comment.