File tree 3 files changed +28
-10
lines changed
3 files changed +28
-10
lines changed Original file line number Diff line number Diff line change 1
1
# HEAD
2
2
3
- Deployment updates:
4
- * support fs volumes on block
3
+ # [ v2.3.0] ( https://github.com/kubernetes-sigs/sig-storage-local-static-provisioner/releases/tag/v2.3.0 )
4
+
5
+ Image updates:
6
+ * Support mount options from StorageClass
7
+ ([ #1005 ] ( https://github.com/kubernetes-incubator/external-storage/pull/1005 ) )
8
+ * Support fs volumes on block
5
9
([ #980 ] ( https://github.com/kubernetes-incubator/external-storage/pull/980 ) ).
6
- 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.
10
+ ** 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.
11
+ * Update base image to k8s.gcr.io/debian-base-amd64:0.4.0
12
+ ([ #1040 ] ( https://github.com/kubernetes-incubator/external-storage/pull/1040 ) )
13
+
14
+ Deployment updates:
15
+ * Add option for nodeSelector in DaemonSet template
16
+ ([ #1022 ] ( https://github.com/kubernetes-incubator/external-storage/pull/1022 ) )
17
+ * Add option to create namespace and use apps/v1 DaemonSet
18
+ ([ #1039 ] ( https://github.com/kubernetes-incubator/external-storage/pull/1039 ) )
19
+ * Fixes provisioner jobs role name in helm template
20
+ ([ #1073 ] ( https://github.com/kubernetes-incubator/external-storage/pull/1073 ) )
7
21
8
22
# [ v2.2.0] ( https://github.com/kubernetes-incubator/external-storage/releases/tag/local-volume-provisioner-v2.2.0 )
9
23
Image updates:
Original file line number Diff line number Diff line change @@ -39,13 +39,15 @@ Recommended provisioner versions with Kubernetes versions
39
39
40
40
| Provisioner version | K8s version | Reason |
41
41
| ------------------- | ------------- | ------------------------- |
42
- | [ 2.1.0] [ 3 ] | 1.10 | Beta API default, block |
42
+ | [ 2.3.0] [ 4 ] | 1.12 | fs on block support |
43
+ | [ 2.2.0] [ 3 ] | 1.10 | Beta API default, block |
43
44
| [ 2.0.0] [ 2 ] | 1.8, 1.9 | Mount propagation |
44
45
| [ 1.0.1] [ 1 ] | 1.7 | |
45
46
46
47
[ 1 ] : https://github.com/kubernetes-incubator/external-storage/tree/local-volume-provisioner-v1.0.1/local-volume
47
48
[ 2 ] : https://github.com/kubernetes-incubator/external-storage/tree/local-volume-provisioner-v2.0.0/local-volume
48
- [ 3 ] : https://github.com/kubernetes-incubator/external-storage/tree/local-volume-provisioner-v2.1.0/local-volume
49
+ [ 3 ] : https://github.com/kubernetes-incubator/external-storage/tree/local-volume-provisioner-v2.2.0/local-volume
50
+ [ 4 ] : https://github.com/kubernetes-sigs/sig-storage-local-static-provisioner/tree/v2.3.0
49
51
50
52
## K8s Feature Status
51
53
@@ -86,7 +88,7 @@ on older versions, please see version links under
86
88
87
89
#### Enabling the alpha feature gates
88
90
89
- ##### 1.10+
91
+ ##### 1.10-1.12
90
92
91
93
If raw local block feature is needed,
92
94
```
Original file line number Diff line number Diff line change 3
3
local-volume-provisioner is released on an as-needed basis. The process is as follows:
4
4
5
5
1 . An issue is proposing a new release with a changelog since the last release
6
- 2 . An OWNER runs ` make test ` to make sure tests pass
7
- 3 . An OWNER runs ` git tag -a $VERSION ` and inserts the changelog and pushes the tag with ` git push $VERSION `
8
- 4 . An OWNER runs ` make push ` to build and push the image
9
- 5 . The release issue is closed
6
+ 3 . An OWNER runs ` make test ` to make sure tests pass
7
+ 2 . An OWNER runs ` make push ` with latest tag
8
+ 4 . An OWNER runs e2es with latest image to make sure tests pass
9
+ 5 . An OWNER runs ` git tag -a $VERSION ` and inserts the changelog and pushes the tag with ` git push $VERSION `
10
+ 6 . An OWNER runs ` make push ` to build and push the image
11
+ 7 . The release issue is closed
10
12
You can’t perform that action at this time.
0 commit comments