-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
readme: add example to use release artifacts #18
Conversation
- path: /opt/extensions/kubernetes/kubernetes-v1.27.4.raw | ||
contents: | ||
source: https://github.com/flatcar/sysext-bakery/releases/latest/download/kubernetes-v1.27.4.raw | ||
- path: /etc/systemd/system-generators/torcx-generator |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this needed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, it's a "hack" around the torcx-generator
to prevent it to run. Otherwise Torcx unpacks containerd.service
and docker.{service,socket}
under /run/systemd/system/
which takes precedence over /usr/lib/systemd/system/docker.{service,socket}
and /usr/lib/systemd/system/containerd.service
merged by systemd-sysext
.
Which leads to this weird situation:
$ docker version
Client:
Version: 24.0.5
API version: 1.41 (downgraded from 1.43)
Go version: go1.20.6
Git commit: ced0996
Built: Fri Jul 21 20:34:32 2023
OS/Arch: linux/amd64
Context: default
Server:
Engine:
Version: 20.10.24
API version: 1.41 (minimum version 1.12)
...
README.md
Outdated
files: | ||
- path: /opt/extensions/docker/docker-24.0.5.raw | ||
contents: | ||
source: https://github.com/flatcar/sysext-bakery/releases/latest/download/docker-24.0.5.raw |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Latest would break, I think we should use a versioned release URL here.
Signed-off-by: Mathieu Tortuyaux <[email protected]>
Follow up of #16