Tags: coreos/toolbox
Tags
This is release 0.1.0 of toolbox. Thanks to the following contributors for patches during this release: Aashish Radhakrishnan <aaradhak@redhat.com> (2): 3d91d1b Bug 2093040: Unable to start `toolbox` on RHCOS using `podman` 4.0 68a86ef Bug 1915537: Rework to use podman attach instead of exec Benjamin Gilbert <bgilbert@redhat.com> (1): bc19342 Delete Container Linux toolbox Timothée Ravier <tim@siosm.fr> (2): 189c778 Clean-up stdout and keep all misc messages on stderr 0e7f648 Add some comments
rhcos-toolbox: use same options for non default images Using a Fedora image instead of the RHEL support tools image for toolbox was causing an error only when running from an `oc debug node` pod. There are no issues when running directly on RHEL CoreOS. Adding the podman `--pid=host` option fixes the error but only when usding `podman run`. There seems to be a difference between `podman run` and `podman create`, `podman start`, and `podman exec`. There was also a difference on the second invocation of toolbox if a container was already created. The first invocation would use the images' CMD and the second would use /bin/sh if no command was passed in. The second invocation will now use the images' CMD when executing into the container for a more consistent experience. Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1850230