-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* per the CSI spec, fulfill volume requests with required\_size under 10GB by extending them to 10GB (the Linode minimum), unless that is over the limit size * added a storage class of `linode-block-storage-retain`, with a default reclaim policy of `Retain` (to avoid deletion of the Block Storage Volume data)
- Loading branch information
Showing
5 changed files
with
1,015 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
## Release Steps and Notes | ||
|
||
```sh | ||
VERSION=v0.1.0 | ||
``` | ||
|
||
```sh | ||
make test | ||
golangci-lint run | ||
hack/release-yaml.sh $VERSION | ||
vi CHANGELOG.md | ||
git add CHANGELOG.md pkg/linode-bs/deploy/releases/linode-blockstorage-csi-driver-$VERSION.yaml | ||
git commit -am '$VERSION release' | ||
git tag -s $VERSION # include changelog text, install instructions, help instructions, etc | ||
make IMAGE_VERSION=$VERSION push | ||
docker tag linode/linode-blockstorage-csi-driver:$VERSION linode/linode-blockstorage-csi-driver:canary | ||
git push linode/linode-blockstorage-csi-driver:canary | ||
docker push linode/linode-blockstorage-csi-driver:canary | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.