Skip to content

Commit

Permalink
New release v0.3.0
Browse files Browse the repository at this point in the history
This release is intended to be used with Kubernetes `v1.12.x` and is not
compatible with older versions of Kubernetes. The latest CSI changes in
`v1.12.x` are not compatible with older version unfortunately, therefore
going forward we will not support older version anymore. Anyone who
wants to use this plugin is free to use the
[v0.2.0](https://github.com/digitalocean/csi-digitalocean/blob/master/deploy/kubernetes/releases/csi-digitalocean-v0.2.0.yaml)
version.
  • Loading branch information
fatih committed Oct 29, 2018
1 parent 7154b30 commit 412f1d2
Show file tree
Hide file tree
Showing 4 changed files with 377 additions and 7 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## unreleased

## v0.3.0 - 2018.10.29

* Add a [tutorial](examples/kubernetes/pod-single-existing-volume/README.md) on how to re-use an existing volume. Also a new option is introduced to prevent formatting an existing volume.
[[GH-87]](https://github.com/digitalocean/csi-digitalocean/pull/87)
* Handle case if a volume is already attached to a droplet
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Cloud Foundry. Feel free to test it on other CO's and give us a feedback.
## Releases

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

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

```
$ kubectl apply -f https://raw.githubusercontent.com/digitalocean/csi-digitalocean/master/deploy/kubernetes/releases/csi-digitalocean-v0.2.0.yaml
$ kubectl apply -f https://raw.githubusercontent.com/digitalocean/csi-digitalocean/master/deploy/kubernetes/releases/csi-digitalocean-v0.3.0.yaml
```

This file will be always updated to point to the latest stable release.
Expand Down Expand Up @@ -220,15 +220,15 @@ $ git push origin

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

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

This will create a binary with version `v0.2.0` and docker image pushed to
`digitalocean/do-csi-plugin:v0.2.0`
This will create a binary with version `v0.3.0` and docker image pushed to
`digitalocean/do-csi-plugin:v0.3.0`

## Contributing

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.2.0
v0.3.0
Loading

0 comments on commit 412f1d2

Please sign in to comment.