This repository was archived by the owner on Sep 19, 2025. It is now read-only.
Conversation
Member
|
I have manually tested the PR: export PACKAGE_LIST="procps-ng openssh-server net-tools iproute dhcp-client crun-wasm wasmedge-rt qemu-user-static subscription-manager gvisor-tap-vsock-gvforwarder cifs-utils nfs-utils-coreos ansible"
podman create --name fedora-update docker.io/library/fedora:40 sleep 7200
podman start fedora-update
podman exec -it fedora-update sh -c "dnf update -y && dnf -y install podman podman-docker $PACKAGE_LIST && dnf clean all && rm -rf /var/cache/yum"
podman export --output rootfs-with-ansible.tar fedora-update
zstd -T0 --auto-threads=logical --ultra -22 --long --rm --verbose rootfs-with-ansible.tarI was able to run the command [root@b471ee7a90b6 /]# ansible-playbook ./playbook.yml
[WARNING]: provided hosts list is empty, only localhost is available. Note that the implicit localhost does not match 'all'
PLAY [Simple podman machine example] **********************************************************************************************************
TASK [Gathering Facts] ************************************************************************************************************************
ok: [localhost]
TASK [create a file] **************************************************************************************************************************
ok: [localhost]
PLAY RECAP ************************************************************************************************************************************
localhost : ok=2 changed=0 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0The image size difference: # +600MB for the tar
❯ ls -lh *.tar
-rw-r--r--. 1 mariolet mariolet 787M Jan 21 14:21 rootfs.tar
-rw-r--r--. 1 mariolet mariolet 1.3G Jan 21 14:16 rootfs-with-ansible.tar
# +48MB when compressed
❯ ls -lh *.zst
-rw-r--r--. 1 mariolet mariolet 178M Jan 21 14:21 rootfs.tar.zst
-rw-r--r--. 1 mariolet mariolet 223M Jan 21 14:16 rootfs-with-ansible.tar.zst |
Signed-off-by: Jake Correnti <[email protected]>
290180b to
dcba213
Compare
Member
Author
|
@l0rd PTAL, I added the ansible-core pkg instead. Thanks! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.