Skip to content

Commit

Permalink
Merge pull request #42 from phillc/master
Browse files Browse the repository at this point in the history
Move release notes to github releases
  • Loading branch information
phillc authored Mar 30, 2020
2 parents 4ff5069 + 96f30cc commit b5c4a89
Show file tree
Hide file tree
Showing 7 changed files with 101 additions and 30 deletions.
4 changes: 3 additions & 1 deletion .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## General:

* [ ] Have you removed all sensitive information, including but not limited to access keys and passwords?
* [ ] Have you checked to ensure there aren't other open or closed pull requests for the same bug/feature/question?
* [ ] Have you checked to ensure there aren't other open or closed [Pull Requests](../../pulls) for the same bug/feature/question?

----

Expand Down Expand Up @@ -31,4 +31,6 @@

----

For general help or discussion, join the [Kubernetes Slack team](https://kubernetes.slack.com/messages/CD4B15LUR/details/) channel `#linode`. To sign up, use the [Kubernetes Slack inviter](http://slack.kubernetes.io/).

The [Linode Community](https://www.linode.com/community/questions/) is a great place to get additional support.
24 changes: 24 additions & 0 deletions .github/labels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
- name: added-feature
description: for new features in the changelog.
color: a2eeef
- name: changed
description: for changes in existing functionality in the changelog.
color: a2eeef
- name: deprecated
description: for soon-to-be removed features in the changelog.
color: e4e669
- name: removed
description: for now removed features in the changelog.
color: e4e669
- name: bugfix
description: for any bug fixes in the changelog.
color: d73a4a
- name: security
description: for vulnerabilities in the changelog.
color: dd4739
- name: bug
description: Something isn't working in this issue.
color: d73a4a
- name: enhancement
description: New feature request in this issue.
color: a2eeef
21 changes: 21 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name-template: 'v$NEXT_PATCH_VERSION'
tag-template: 'v$NEXT_PATCH_VERSION'
categories:
- title: '🚀 Added'
label: 'added-feature'
- title: '🧰 Changed'
label: 'changed'
- title: "⚠️ Deprecated"
label: "deprecated"
- title: "⚠️ Removed"
label: "removed"
- title: '🐛 Bug Fixes'
label: 'bugfix'
- title: "⚠️ Security"
label: "security"
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
no-changes-template: "- No changes"
template: |
## Changes
$CHANGES
18 changes: 18 additions & 0 deletions .github/workflows/docker-hub.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Publish Docker Release
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Build
run: make build-linux
- name: Publish latest to Registry
uses: elgohr/Publish-Docker-Github-Action@master
with:
name: linode/linode-blockstorage-csi-driver
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
tags: "latest,${{ github.event.release.tag_name }}"
17 changes: 17 additions & 0 deletions .github/workflows/label-sync.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Sync labels
on:
push:
branches:
- master
paths:
- .github/labels.yml
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: micnncim/action-label-syncer@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
manifest: .github/labels.yml
17 changes: 17 additions & 0 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Release Drafter

on:
push:
branches:
- master

jobs:
update_release_draft:
runs-on: ubuntu-latest
steps:
- uses: release-drafter/release-drafter@v5
with:
config-name: release-drafter.yml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

30 changes: 1 addition & 29 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,29 +1 @@
# Release History

## [v0.1.3](https://github.com/linode/linode-blockstorage-csi-driver/compare/v0.1.0..v0.1.3)

### Features

* Support arbitrary root CAs

## Enhancements

* Update linodego to 0.10.0 (prepare to support 8+ volumes per VM)

## v0.1.0 - March 2nd 2019

* 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)

## v0.0.3 - Dec 5th 2018

* Fixed mangling of hyphens in k8s stored volume keys (from prefixes, which affected mount)

## v0.0.2 - Dec 4th 2018

* CSI 1.0.0 Rewrite, now requiring Kubernetes 1.13+
* Added `--bs-prefix` driver argument for prefixing created volume labels

## v0.0.1 - Aug 14th 2018

* Work-In-Progress
Release notes for this project are kept here: https://github.com/linode/linode-blockstorage-csi-driver/releases

0 comments on commit b5c4a89

Please sign in to comment.