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
## Description
This allows us to know at runtime the version of HookOS. Also, modified the prompt to contain the version so that when sharing screenshots to debug it will be clear the Hook version.
Turned down the kernel.printk log level to warning (4) so that the console Getty doesn't get messy with kernel messages. Better UX (hopefully). A side effect of this is that we won't see messages anymore on the console when workflow action containers run. Syslog messages will still be sent to Boots.
<img width="732" alt="image" src="https://github.com/tinkerbell/hook/assets/12081036/074764f3-b211-4c34-91f2-6d27511be212">
## Why is this needed
Fixes: #176
## How Has This Been Tested?
## How are existing users impacted? What migration steps/scripts do we need?
## Checklist:
I have:
- [ ] updated the documentation and/or roadmap (if required)
- [ ] added unit or e2e tests
- [ ] provided instructions on how to upgrade
Copy file name to clipboardExpand all lines: RELEASING.md
+28-4Lines changed: 28 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,15 +1,39 @@
1
1
# Releasing
2
2
3
-
## Process
4
-
5
3
For version v0.x.y:
6
4
5
+
## Prerequisites
6
+
7
+
1. Update the `VERSION`, `VERSION_ID`, and `PRETTY_NAME` values in the `hook.yaml` file under `files -> "- path: etc/os-release"` to use `0.x.y`
8
+
9
+
```bash
10
+
make update-os-release NEW_VERSION=0.x.y
11
+
```
12
+
13
+
1. Commit, push, PR, and merge the version changes
14
+
15
+
```bash
16
+
git commit -sm "Update version to v0.x.y" hook.yaml
17
+
```
18
+
19
+
## Release Process
20
+
7
21
1. Create the annotated tag
22
+
8
23
> NOTE: To use your GPG signature when pushing the tag, use `SIGN_TAG=1 ./contrib/tag-release.sh v0.x.y` instead
9
-
-`./contrib/tag-release.sh v0.x.y`
24
+
25
+
```bash
26
+
./contrib/tag-release.sh v0.x.y
27
+
```
28
+
10
29
1. Push the tag to the GitHub repository. This will automatically trigger a [Github Action](https://github.com/tinkerbell/hook/actions) to create a release.
30
+
11
31
> NOTE: `origin` should be the name of the remote pointing to `github.com/tinkerbell/boots`
0 commit comments