Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Spec to 1.1 and Implement Resize #15

Merged
merged 25 commits into from
Apr 22, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
5f57e80
Update dependencies:
alakae Mar 25, 2020
daea419
go mod vendor
alakae Mar 25, 2020
600d199
Fix breaking changes from go-sdk update.
alakae Mar 18, 2020
f9affcb
Ensure new csi 1.1 spec.
alakae Mar 25, 2020
1c38d06
driver_test: target/staging dirs are handled automatically with v2.2.0
alakae Mar 25, 2020
3f2456f
Implement Volume Expansion.
alakae Mar 16, 2020
2104274
Add integration test cases for resizing bulk and luks.
alakae Mar 18, 2020
3017eda
Ditch the old fake stuff.
alakae Mar 26, 2020
227f724
New way of mocking the cloudscale API.
alakae Mar 27, 2020
52dd8f4
Even though the dirs are created automatically, the paths ned to be set.
alakae Apr 3, 2020
3f184c9
Use csi-test v2.3.0. But since semantic versioning was used wrong csi…
alakae Apr 3, 2020
7fe1d2b
Return error on invalid StartingToken.
alakae Apr 6, 2020
5dc22e4
Run unit tests on travis.
alakae Apr 6, 2020
f8774f9
Improve comment.
alakae Apr 15, 2020
4156151
Return actual volume size.
alakae Apr 15, 2020
696aa3d
Always abort if a starting token is set.
alakae Apr 16, 2020
ca99d63
Increase timeout.
alakae Apr 16, 2020
b2ebfe2
Assert file system UUID.
alakae Apr 16, 2020
4113c86
For new kubespray versions we need to register hosts with ansible_ssh…
alakae Apr 22, 2020
6e1c44f
Disable caching.
alakae Apr 22, 2020
2e026d0
Update CHANGELOG.md.
alakae Apr 22, 2020
4233818
bump-version: remove sembump
jcodybaker Apr 22, 2019
ac6c4d9
Update README.md.
alakae Apr 22, 2020
e3b292a
Merge branch 'master' into update
alakae Apr 22, 2020
1506a6b
Prepare v1.1.0 release.
alakae Apr 22, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
10 changes: 7 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
language: go

go:
- "1.10.x"
- tip
- stable

env:
- GO111MODULE=on

script:
- make test
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
## unreleased

## v1.1.0 - 2020.04.22

* Update to CSI spec v1.1.0

* Add support for [Volume Expansion](https://kubernetes-csi.github.io/docs/volume-expansion.html).

## v1.0.1 - 2020.01.15

* Fix: Volume Attaching sometimes didn't work, please see
Expand Down
Loading