Skip to content

Commit

Permalink
Merge pull request #21 from alakae/path
Browse files Browse the repository at this point in the history
Make Finding Device by UUID more Robust
  • Loading branch information
alakae authored Mar 31, 2021
2 parents 6529626 + d9bdc37 commit b47fbbc
Show file tree
Hide file tree
Showing 6 changed files with 550 additions and 25 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## unreleased

## v1.3.1 - 2021.03.31

* Support all formats of files in `/dev/disk/by-id` that were observed across different Linux distributions.

## v1.3.0 - 2020.10.01

* Increase the default value of CLOUDSCALE_MAX_CSI_VOLUMES_PER_NODE to 125.
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ secret `my-pvc-luks-key`.
## Releases

The cloudscale.ch CSI plugin follows [semantic versioning](https://semver.org/).
The current version is: **`v1.3.0`**. The project is still under active development and may not be
The current version is: **`v1.3.1`**. The project is still under active development and may not be
production ready.

* Bug fixes will be released as a `PATCH` update.
Expand Down Expand Up @@ -103,10 +103,10 @@ cloudscale Opaque 1 18h
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 (`v1.3.0`) you can execute the following command:
For example, to use the latest stable version (`v1.3.1`) you can execute the following command:

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

There are also `dev` images available:
Expand Down Expand Up @@ -202,7 +202,7 @@ Please use the following options with care.

### Max. Number of CSI Volumes per Node

In the `v1.3.0` release the default CSI volumes per node limit of has been increased
In the `v1.3.1` release the default CSI volumes per node limit of has been increased
to 125 (previously 23). To take advantage of the higher CSI limit you must ensure that
all your cluster nodes are using `virtio-scsi` devices (i.e. `/dev/sdX` devices are used).
This is the default for servers created after October 1st, 2020.
Expand Down Expand Up @@ -271,15 +271,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 `v1.3.0` and then publish a new docker build:
master with the version `v1.3.1` and then publish a new docker build:

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

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

## Contributing

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

0 comments on commit b47fbbc

Please sign in to comment.