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: README.md
+17-1Lines changed: 17 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,4 +13,20 @@ The script details can be found in `/config/plugin/` but ultimately, they are:
13
13
14
14
*July 2024* - The custom `node problem detector` image is now stored in the `uswitch/node-problem-detector` repository on Quay.
15
15
16
-
Base image tags available at: https://explore.ggcr.dev/?repo=registry.k8s.io/node-problem-detector/node-problem-detector
16
+
Base image tags available at: https://explore.ggcr.dev/?repo=registry.k8s.io/node-problem-detector/node-problem-detector
17
+
18
+
## Releasing a New Version
19
+
20
+
To publish a new tagged image to Quay, push a semantic version tag to the repository:
21
+
22
+
```bash
23
+
# Ensure you're on the latest master
24
+
git checkout master
25
+
git pull origin master
26
+
27
+
# Create and push a tag
28
+
git tag v1.0.0
29
+
git push origin v1.0.0
30
+
```
31
+
32
+
This triggers the CI workflow which builds and pushes the image to `quay.io/uswitch/node-problem-detector` with both the version tag and the commit SHA.
0 commit comments