@@ -39,10 +39,11 @@ naming convention `<hostpath-deployment-version>-on-<kubernetes-version>`.
39
39
1 . Changes can then be updated in all the sidecar repos and hostpath driver repo
40
40
by following the [ update
41
41
instructions] ( https://github.com/kubernetes-csi/csi-release-tools/blob/master/README.md#sharing-and-updating ) .
42
- 1 . New pull and CI jobs are configured by
42
+ 1 . New pull and CI jobs are configured by adding new K8s versions to the top of
43
43
[ gen-jobs.sh] ( https://github.com/kubernetes/test-infra/blob/master/config/jobs/kubernetes-csi/gen-jobs.sh ) .
44
- New pull jobs that have been unverified should be initially made optional.
45
- [ Example] ( https://github.com/kubernetes/test-infra/pull/15055 )
44
+ New pull jobs that have been unverified should be initially made optional by
45
+ setting the new K8s version as
46
+ [ experimental] ( https://github.com/kubernetes/test-infra/blob/a1858f46d6014480b130789df58b230a49203a64/config/jobs/kubernetes-csi/gen-jobs.sh#L40 ) .
46
47
1 . Once new pull and CI jobs have been verified, and the new Kubernetes version
47
48
is released, we can make the optional jobs required, and also remove the
48
49
Kubernetes versions that are no longer supported.
@@ -54,14 +55,19 @@ naming convention `<hostpath-deployment-version>-on-<kubernetes-version>`.
54
55
generator] ( https://github.com/kubernetes/release/tree/master/cmd/release-notes )
55
56
1 . Generate release notes for the release. Replace arguments with the relevant
56
57
information.
58
+ * Clean up old cached information (also needed if you are generating release
59
+ notes for multiple repos)
60
+ ```bash
61
+ rm -rf /tmp/k8s-repo
62
+ ```
57
63
* For new minor releases on master:
58
- ```
64
+ ```bash
59
65
GITHUB_TOKEN=<token > release-notes --discover=mergebase-to-latest
60
66
--github-org=kubernetes-csi --github-repo=external-provisioner
61
67
--required-author="" --output out.md
62
68
```
63
69
* For new patch releases on a release branch:
64
- ```
70
+ ```bash
65
71
GITHUB_TOKEN=<token > release-notes --discover=patch-to-latest --branch=release-1.1
66
72
--github-org=kubernetes-csi --github-repo=external-provisioner
67
73
--required-author="" --output out.md
0 commit comments