You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: RELEASE.md
+26-2Lines changed: 26 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,26 @@ The release schedule for this project is ad-hoc. Given the pre-1.0 status of the
8
8
9
9
There is a semi-automated release process for this project. When you create a Git tag with a tagname that has a `v` prefix and push it to GitHub it will trigger the [release workflow].
10
10
11
+
### Preparing for a Release
12
+
13
+
**BEFORE** doing a release, check if the other images in the csi-driver Helm
$ crane ls registry.k8s.io/sig-storage/livenessprobe | sort -V
25
+
26
+
$ crane ls registry.k8s.io/sig-storage/csi-node-driver-registrar | sort -V
27
+
```
28
+
29
+
### Doing a Release
30
+
11
31
The release process for this repo is documented below:
12
32
13
33
1. Create a tag for the new release:
@@ -16,23 +36,27 @@ The release process for this repo is documented below:
16
36
git tag --annotate --message="Release ${VERSION}""${VERSION}"
17
37
git push origin "${VERSION}"
18
38
```
39
+
19
40
2. A GitHub action will see the new tag and do the following:
20
41
- Build and publish any container images
21
42
- Build and publish the Helm chart
22
43
- Create a draft GitHub release
44
+
23
45
3. Wait for the PR to be merged and wait for OCI Helm chart to propagate and become available from https://charts.jetstack.io (this might take a few hours).
46
+
24
47
4. Visit the [releases page], edit the draft release, click "Generate release notes", then edit the notes to add the following to the top
25
48
```
26
49
csi-driver-spiffe is a clean and simple way to get SPIFFE IDs for your Kubernetes pods with minimal dependencies and minimal fuss.
27
50
```
51
+
28
52
5. Publish the release.
29
53
30
54
## Artifacts
31
55
32
56
This repo will produce the following artifacts each release. For documentation on how those artifacts are produced see the "Process" section.
33
57
34
-
- *Container Images* - Container images for the are published to `quay.io/jetstack`.
58
+
- *Container Images* - Container images for the are published to `quay.io/jetstack`.
35
59
- *Helm chart* - An official Helm chart is maintained within this repo and published to `quay.io/jetstack` and `charts.jetstack.io` on each release.
0 commit comments