mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-06-28 08:17:37 +00:00
doc: Fixes for release.md
Add requirement for the user to be added to the docker group. Observed firecracker failing due to this. Add fixes for typos and missing spaces. Fixes #754 Signed-off-by: Archana Shinde <archana.m.shinde@intel.com>
This commit is contained in:
parent
a70830dd62
commit
7c26509a72
@ -32,7 +32,13 @@ guides on how to use release scripts instead of do all the checklist manually.
|
|||||||
- You should configure your GitHub to use your ssh keys (to push to branches). See https://help.github.com/articles/adding-a-new-ssh-key-to-your-github-account/.
|
- You should configure your GitHub to use your ssh keys (to push to branches). See https://help.github.com/articles/adding-a-new-ssh-key-to-your-github-account/.
|
||||||
* As an alternative, configure hub to push and fork with HTTPS, `git config --global hub.protocol https` (Not tested yet) *
|
* As an alternative, configure hub to push and fork with HTTPS, `git config --global hub.protocol https` (Not tested yet) *
|
||||||
|
|
||||||
- [Docker](https://docs.docker.com/install/)
|
- [Docker](https://docs.docker.com/install/).
|
||||||
|
Additionally, the step to generate static binaries requires you to be part of the `docker` group.
|
||||||
|
```bash
|
||||||
|
$ sudo usermod -a -G docker ${USER}
|
||||||
|
$ # Reinitialize user env for the user
|
||||||
|
$ newgrp -
|
||||||
|
```
|
||||||
|
|
||||||
- Get the [Packaging](https://github.com/kata-containers/packaging) Kata repository
|
- Get the [Packaging](https://github.com/kata-containers/packaging) Kata repository
|
||||||
|
|
||||||
@ -109,7 +115,7 @@ make sure the packages install and work. To help with this you can use the [pack
|
|||||||
```bash
|
```bash
|
||||||
$ cd ${GOPATH}/src/github.com/kata-containers/packaging/release
|
$ cd ${GOPATH}/src/github.com/kata-containers/packaging/release
|
||||||
# Note: OLD_VERSION is where the script should start to get changes.
|
# Note: OLD_VERSION is where the script should start to get changes.
|
||||||
$ ./runtime-release-notes.sh OLD_VERSION ${NEW_VERSION} > notes.md
|
$ ./runtime-release-notes.sh ${OLD_VERSION} ${NEW_VERSION} > notes.md
|
||||||
# Add the release notes in GitHub runtime.
|
# Add the release notes in GitHub runtime.
|
||||||
$ hub -C "${GOPATH}/src/github.com/kata-containers/runtime" release edit -F notes.md "${NEW_VERSION}"
|
$ hub -C "${GOPATH}/src/github.com/kata-containers/runtime" release edit -F notes.md "${NEW_VERSION}"
|
||||||
```
|
```
|
||||||
|
Loading…
Reference in New Issue
Block a user