Jelle van der Waa

Results 875 comments of Jelle van der Waa

Additionally hide pod stats on mobile, they now show as this: ![Image](https://github.com/user-attachments/assets/828872f0-22e5-4f3c-b986-4c7443157f31) Which takes up too much space, plus we already should hide cpu/memory of containers on mobile. Furthermore we...

So it turns out I completely misunderstood the intention here, on mobile it should show labels next to the icons for pods. As described here https://github.com/cockpit-project/cockpit-podman/pull/1037#issuecomment-1245376315 We do edit the...

> Related is our custom css classes which achieve almost the same: > > ``` > @media (max-width: $pf-v6-global--breakpoint--md - 1) { > .show-only-when-wide { > display: none; > }...

Makes sense, we can easily test this by creating a [testing] pacakage which a higher pkgver then a [core] package and then flagging the [core] package should not flag the...

For our lowest supported systemd (RHEL8): ``` [root@rhel-8-10-127-0-0-2-2201 ~]# sudo systemd-run --machine=admin@ --quiet --user --collect --pipe --wait podman run --rm docker.io/library/alpine echo hello Execution in user context is not supported...

Some important notes: * machinectl shell: this does not return the exit code of the failed command [Cockpit implementation](https://github.com/cockpit-project/cockpit/pull/22248) which does not require to support RHEL-8

systemd-run --user --machine=admin@ does not work on systemd < v249 due to the lack of cbdc29492097e24ef3320280bc2a8dedbce02d9a. Sadly a very trivial commit.

`machinectl shell admin@` does not return any exit code, and everything returns as stdout. A possible execution for us would be: * Drop to be run commands into a script...

Lets start with a pull request moving `setUp` and `tearDown` to modern times something along: ```python def execute(self, cmd, superuser: bool = False): if superuser: m.execute(cmd) else: if m.image ==...

Chatting with the systemd maintainers for RHEL, we can ask for https://github.com/systemd/systemd/commit/cbdc29492097e24ef3320280bc2a8dedbce02d9a to be backported to https://github.com/redhat-plumbers/systemd-rhel8 and we can even make our own pull request.