We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The --after option does not appear to be working at the moment...
--after
Running podman run quay.io/k9withabone/podlet --after db.service podman run someregistry.io/my/web:latest generates the following:
podman run quay.io/k9withabone/podlet --after db.service podman run someregistry.io/my/web:latest
# web.container [Unit] [Container] Image=someregistry.io/my/web:latest
Expected behavior is to see After=db.service in the unit section
After=db.service
Possibly related - let's try the --before option: podman run quay.io/k9withabone/podlet --before web.service podman run someregistry.io/my/db:latest:
--before
podman run quay.io/k9withabone/podlet --before web.service podman run someregistry.io/my/db:latest
# db.container [Unit] Before=web.service After= [Container] Image=someregistry.io/my/db:latest
Empty after in the unit section is unexpected.
$ podman run quay.io/k9withabone/podlet --version podlet 0.2.4
The text was updated successfully, but these errors were encountered:
fix: use quadlet serializer for Unit Display impl
Unit
Display
31cfb55
Brings `Unit` inline with the other sections of the generated quadlet file. Fixes: #64
Successfully merging a pull request may close this issue.
The
--after
option does not appear to be working at the moment...Running
podman run quay.io/k9withabone/podlet --after db.service podman run someregistry.io/my/web:latest
generates the following:Expected behavior is to see
After=db.service
in the unit sectionPossibly related - let's try the
--before
option:podman run quay.io/k9withabone/podlet --before web.service podman run someregistry.io/my/db:latest
:Empty after in the unit section is unexpected.
The text was updated successfully, but these errors were encountered: