Skip to content

Commit

Permalink
Merge pull request #24 from msau42/update-changelog
Browse files Browse the repository at this point in the history
Update docs for 2.3.0
  • Loading branch information
k8s-ci-robot authored Jan 11, 2019
2 parents 5a7961f + a36efd1 commit 8ffd26c
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 10 deletions.
20 changes: 17 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,23 @@
# HEAD

Deployment updates:
* support fs volumes on block
# [v2.3.0](https://github.com/kubernetes-sigs/sig-storage-local-static-provisioner/releases/tag/v2.3.0)

Image updates:
* Support mount options from StorageClass
([#1005](https://github.com/kubernetes-incubator/external-storage/pull/1005))
* Support fs volumes on block
([#980](https://github.com/kubernetes-incubator/external-storage/pull/980)).
The change breaks backwards compatibility for block volumes: Users must explicitly set volumeMode to "Block" in config if a StorageClass is expected to be used for block volumes.
**Breaking change:** The change breaks backwards compatibility for block volumes: Users must explicitly set volumeMode to "Block" in config if a StorageClass is expected to be used for block volumes.
* Update base image to k8s.gcr.io/debian-base-amd64:0.4.0
([#1040](https://github.com/kubernetes-incubator/external-storage/pull/1040))

Deployment updates:
* Add option for nodeSelector in DaemonSet template
([#1022](https://github.com/kubernetes-incubator/external-storage/pull/1022))
* Add option to create namespace and use apps/v1 DaemonSet
([#1039](https://github.com/kubernetes-incubator/external-storage/pull/1039))
* Fixes provisioner jobs role name in helm template
([#1073](https://github.com/kubernetes-incubator/external-storage/pull/1073))

# [v2.2.0](https://github.com/kubernetes-incubator/external-storage/releases/tag/local-volume-provisioner-v2.2.0)
Image updates:
Expand Down
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,15 @@ Recommended provisioner versions with Kubernetes versions

| Provisioner version | K8s version | Reason |
| ------------------- | ------------- | ------------------------- |
| [2.1.0][3] | 1.10 | Beta API default, block |
| [2.3.0][4] | 1.12 | fs on block support |
| [2.2.0][3] | 1.10 | Beta API default, block |
| [2.0.0][2] | 1.8, 1.9 | Mount propagation |
| [1.0.1][1] | 1.7 | |

[1]: https://github.com/kubernetes-incubator/external-storage/tree/local-volume-provisioner-v1.0.1/local-volume
[2]: https://github.com/kubernetes-incubator/external-storage/tree/local-volume-provisioner-v2.0.0/local-volume
[3]: https://github.com/kubernetes-incubator/external-storage/tree/local-volume-provisioner-v2.1.0/local-volume
[3]: https://github.com/kubernetes-incubator/external-storage/tree/local-volume-provisioner-v2.2.0/local-volume
[4]: https://github.com/kubernetes-sigs/sig-storage-local-static-provisioner/tree/v2.3.0

## K8s Feature Status

Expand Down Expand Up @@ -86,7 +88,7 @@ on older versions, please see version links under

#### Enabling the alpha feature gates

##### 1.10+
##### 1.10-1.12

If raw local block feature is needed,
```
Expand Down
10 changes: 6 additions & 4 deletions provisioner/RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@
local-volume-provisioner is released on an as-needed basis. The process is as follows:

1. An issue is proposing a new release with a changelog since the last release
2. An OWNER runs `make test` to make sure tests pass
3. An OWNER runs `git tag -a $VERSION` and inserts the changelog and pushes the tag with `git push $VERSION`
4. An OWNER runs `make push` to build and push the image
5. The release issue is closed
3. An OWNER runs `make test` to make sure tests pass
2. An OWNER runs `make push` with latest tag
4. An OWNER runs e2es with latest image to make sure tests pass
5. An OWNER runs `git tag -a $VERSION` and inserts the changelog and pushes the tag with `git push $VERSION`
6. An OWNER runs `make push` to build and push the image
7. The release issue is closed

0 comments on commit 8ffd26c

Please sign in to comment.