Skip to content

Commit 28221a3

Browse files
committed
Release csi-digitalocean v0.4.1
* Cherry-pick: Add tagging support for Volumes via the new `--do-tag` flag [[GH-130]](#130) * Cherry-pick: Fix support for volume snapshots by setting snapshot id on volume creation [[GH-129]](#129) * Cherry-pick: Goreportcard fixes (typos, exported variables, etc..) [[GH-121]](#121) * Cherry-pick: Rename the cluster role bindings for the `node-driver-registrar` to be consistent with the other role bindings. [[GH-118]](#118) * Cherry-pick: Remove the `--token` flag for the `csi-do-node` driver. Drivers running on the node don't need the token anymore. [[GH-118]](#118) * Cherry-pick: Don't check the volume limits on the worker nodes (worker nodes are not able to talk to DigitalOcean API) [[GH-142]](#142) * Cherry-pick: Update `godo` (DigitalOcean API package) version to v1.13.0 [[GH-143]](#143) * Cherry-pick: Fix race in snapshot integration test. [[GH-146]](#146) * Cherry-pick: Add tagging support for Volume snapshots via the new `--do-tag` flag [[GH-145]](#145)
1 parent e5a9941 commit 28221a3

File tree

4 files changed

+552
-7
lines changed

4 files changed

+552
-7
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
## unreleased
22

3+
## v0.4.1 - 2019.04.26
4+
35
* Cherry-pick: Add tagging support for Volumes via the new `--do-tag` flag
46
[[GH-130]](https://github.com/digitalocean/csi-digitalocean/pull/130)
57
* Cherry-pick: Fix support for volume snapshots by setting snapshot id on volume creation

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Cloud Foundry. Feel free to test it on other CO's and give us a feedback.
88
## Releases
99

1010
The DigitalOcean CSI plugin follows [semantic versioning](https://semver.org/).
11-
The current version is: **`v0.4.0`**. This means that the project is still
11+
The current version is: **`v0.4.1`**. This means that the project is still
1212
under active development and may not be production ready. The plugin will be
1313
bumped to **`v1.0.0`** once the [DigitalOcean Kubernetes
1414
product](https://www.digitalocean.com/products/kubernetes/) is released and
@@ -75,10 +75,10 @@ digitalocean Opaque 1 18h
7575

7676
Before you continue, be sure to checkout to a [tagged
7777
release](https://github.com/digitalocean/csi-digitalocean/releases). Always use the [latest stable version](https://github.com/digitalocean/csi-digitalocean/releases/latest)
78-
For example, to use the latest stable version (`v0.4.0`) you can execute the following command:
78+
For example, to use the latest stable version (`v0.4.1`) you can execute the following command:
7979

8080
```
81-
$ kubectl apply -f https://raw.githubusercontent.com/digitalocean/csi-digitalocean/master/deploy/kubernetes/releases/csi-digitalocean-v0.4.0.yaml
81+
$ kubectl apply -f https://raw.githubusercontent.com/digitalocean/csi-digitalocean/master/deploy/kubernetes/releases/csi-digitalocean-v0.4.1.yaml
8282
```
8383

8484
This file will be always updated to point to the latest stable release. If you
@@ -207,15 +207,15 @@ $ git push origin
207207

208208
After it's merged to master, [create a new Github
209209
release](https://github.com/digitalocean/csi-digitalocean/releases/new) from
210-
master with the version `v0.4.0` and then publish a new docker build:
210+
master with the version `v0.4.1` and then publish a new docker build:
211211

212212
```
213213
$ git checkout master
214214
$ make publish
215215
```
216216

217-
This will create a binary with version `v0.4.0` and docker image pushed to
218-
`digitalocean/do-csi-plugin:v0.4.0`
217+
This will create a binary with version `v0.4.1` and docker image pushed to
218+
`digitalocean/do-csi-plugin:v0.4.1`
219219

220220
## Contributing
221221

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.4.0
1+
v0.4.1

0 commit comments

Comments
 (0)