mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-24 01:07:53 +00:00
If a container unit starts on boot with a dependency on `default.target` the image unit may start too soon, before network is ready. This cause the unit to fail to pull the image. - Add a dependency on `network-online.target` to make sure image pulls don't fail. See https://github.com/containers/podman/issues/21873 - Document the hardcoded dependency on `network-online.target` for images unit and explain how it can be overriden if necessary. - tests/e2e/quadlet: Add `assert-last-key-regex` Required to test the `After=` override in [Unit] section See https://github.com/containers/podman/pull/22057#issuecomment-2008959993 - quadlet/unitfile: add a prepenUnitLine method Requirements on networks should be inserted at the top of the section so the user can override them. Signed-off-by: jbtrystram <jbtrystram@redhat.com>
28 lines
2.3 KiB
Text
28 lines
2.3 KiB
Text
[Container]
|
|
Image=localhost/imagename
|
|
## assert-podman-args-key-val "--mount" "," "type=bind,source=/path/on/host,destination=/path/in/container"
|
|
Mount=type=bind,source=/path/on/host,destination=/path/in/container
|
|
## assert-podman-args-key-val "--mount" "," "type=bind,source=/path/on/host,dst=/path/in/container,relabel=shared"
|
|
Mount=type=bind,src=/path/on/host,dst=/path/in/container,relabel=shared
|
|
## assert-podman-args-key-val "--mount" "," "type=bind,source=/path/on/host,dst=/path/in/container,relabel=shared,U=true"
|
|
Mount=type=bind,src=/path/on/host,dst=/path/in/container,relabel=shared,U=true
|
|
## assert-podman-args-key-val "--mount" "," "type=volume,source=vol1,destination=/path/in/container,ro=true"
|
|
Mount=type=volume,source=vol1,destination=/path/in/container,ro=true
|
|
## assert-podman-args-key-val "--mount" "," "type=volume,source=systemd-vol2,destination=/path/in/container,ro=true"
|
|
## assert-key-is "Unit" "Requires" "vol2-volume.service"
|
|
## assert-key-is "Unit" "After" "network-online.target" "vol2-volume.service"
|
|
Mount=type=volume,source=vol2.volume,destination=/path/in/container,ro=true
|
|
## assert-podman-args-key-val "--mount" "," "type=tmpfs,tmpfs-size=512M,destination=/path/in/container"
|
|
Mount=type=tmpfs,tmpfs-size=512M,destination=/path/in/container
|
|
## assert-podman-args-key-val "--mount" "," "type=image,source=fedora,destination=/fedora-image,rw=true"
|
|
Mount=type=image,source=fedora,destination=/fedora-image,rw=true
|
|
## assert-podman-args-key-val "--mount" "," "type=devpts,destination=/dev/pts"
|
|
Mount=type=devpts,destination=/dev/pts
|
|
## assert-podman-args-key-val-regex "--mount" "," "type=bind,source=.*/podman-e2e-.*/subtest-.*/quadlet/path/on/host,destination=/path/in/container"
|
|
Mount=type=bind,source=./path/on/host,destination=/path/in/container
|
|
## assert-podman-args-key-val "--mount" "," "type=volume,source=vol1,destination=/path/in/container,ro"
|
|
Mount=type=volume,source=vol1,destination=/path/in/container,ro
|
|
## assert-podman-args-key-val "--mount" "," "type=bind,source=/tmp,\"dst=/path,1\""
|
|
Mount=type=bind,src=/tmp,\"dst=/path,1\"
|
|
## assert-podman-args-key-val-regex "--mount" "," "type=bind,source=.*/podman-e2e-.*/subtest-.*/quadlet/src,destination=/dst/,idmap=uids=12-34-1;gids=56-78-1"
|
|
Mount=type=bind,source=./src/,destination=/dst/,idmap=uids=12-34-1;gids=56-78-1
|