Now that build is no longer incorrectly excluded it gets added. The fact
that this did not cause a compile failure was just because gingko is
used directly by the tests and not compiled from these sources.
Signed-off-by: Paul Holzinger <pholzing@redhat.com>
This matches all directories not just the top level one we wanted to
ignore, however we no loner use or put anything into /build so we can
just remove it instead.
Signed-off-by: Paul Holzinger <pholzing@redhat.com>
This error can happen in many different cases such a a non existing
image or other kind of pull errors. In all cases they do not reflect any
sort of internal inconsistency in the code itself so this is just
misleading to users.
Fixes: #2465
Signed-off-by: Paul Holzinger <pholzing@redhat.com>
When running inside podman machine we cannot use the normal ip lookup
logic for host.containers.internal because that should refer to the
actual host system and not the VM ip.
gvproxy already resolves the host.containers.internal name correctly but
the issue is when a users wants to set a custom name via --add-host
foobar:host-gateway then we need to know the actual ip to replace the
host-gateway part. Right now we just always error which is not good.
To fix this just look up the name ourselves so we can add it to
/etc/hosts.
Fixes: containers/podman#21681
Signed-off-by: Paul Holzinger <pholzing@redhat.com>
This changes the memory usage calculation to follow Docker's approach:
- For cgroup v2: memory.current - memory.stat['inactive_file']
- For cgroup v1: memory.usage_in_bytes - memory.stat['total_inactive_file']
The previous calculation used anonymous memory only, but Docker's
calculation provides more accurate memory usage by excluding
inactive file cache.
Closes: https://github.com/containers/common/issues/2454
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
-----BEGIN PGP SIGNATURE-----
iQIzBAABCAAdFiEE3ot0rWfKLB0vVsTu6xRd2TijyvIFAmhACKgACgkQ6xRd2Tij
yvK4Vw/7BqQQABbGvBPWqkkpIUXKNp1t6FxVseLgqSPFWMFLWFPXwvxipvWOKW8k
MnV6PxsmArABdbGvSlCBajxGSxCx3PzHHvcYuqgXJBlojsDBUHJyKIczCqH6fNk5
ZvfhJtK2mizLzdsc13q0Vd10oVxGVvNC5TnE/Uo28gZYRq6GoQgusnbVpt9z99AC
BpwDxW/Zcgvwq4mJ8OpCzeID/QEW1nLUCHpYQIEnWNjLak+gdA6sfMlrcFJ5PUCT
CcI0HCp1mXvdqUUf8P/DQFGGpVCFgGDTStUEpxixA65MP4zoWEnCBR0EU/e6S6uU
xJhv1OAtU2IElPiL+sHJ0AMzrtuDjLcEAG3E9GyMi2mA0s2VDtOXmdEaxElPnjr5
88FQjjNwjOXWy9xjYXSw/DOOCy5RGiVjgitP+FcAXR00DQXE588zr7ffCQmrn0BE
OC4GHkYfcCWYf0Q22O9ZVHPgyqRTtxQdks2OpaHN18q4UDWSn9Svg+aGcp5uZI5Q
EZEicVBFqkqoUsw064qKEP0XEsCnVkBFHg/cs1ZK94v4FzLdK4g9Ak/G7s88luFD
jEjEHPi+oG0jfA2jNLIZ9udVV/TeJEJtTxMAZeIycHFrQ9DFzSJljezfUYSAiHlR
IBnOCU4g9lW5nP9kYUvFwO8hmbHPz4pLPx/O8rJ0PrpxsOHYru0=
=y8I5
-----END PGP SIGNATURE-----
gpgsig -----BEGIN PGP SIGNATURE-----
iQIzBAABCAAdFiEE3ot0rWfKLB0vVsTu6xRd2TijyvIFAmhANfMACgkQ6xRd2Tij
yvLY8w/9HrY0brGRfWpFGAR7bThNywdJRSsJoZuGJ+RFejz/2vEpEfnGTDhr2tWM
Og238JoWmAi3c+XP5/T9j8QGQkiZNEE0/C0EuXRLL8/dXTUVJQTHxewSH1fojyDW
P0ACcv6k85xhWL4Dn3qvSPtelBKvcybsb6ZpJyMM6T4GJvZ9ciQZ5XVOwBgkRONf
pw2C1SJtS0McPoMXGIo09IPWH6W8eyXOOu+AyVrfuB3nxjTA20i7TRrwUWOZ0Ie0
xxKew5uNI+Qxcqv2JjBUmK4CYweI5vfXu5zw9ZQ1yEO8x3XLVn4kJzxh2k1SPCUf
QyPPDEGaVve1PS2YQXzUU9ChupZMbobxw2+RRikFFNnLVlmFVTHqLVY4/O9mslMJ
t5EbT02uo7sy6Et8FVIDbvmig/Bo191A5mO/jhCPuk336ViAdETb5AfXYeplSQgi
3Bv1yN3TpZ3lE1ygwtyCHw4C5pbQ4WGQyK7cex97pnaqYPsfoWCDTr4QoIhKIyLg
sy/I7l3/O730z4/Yks6Q67/xT1/AlajHeJWTYiM5oL03Qf+BMlKN9Ww1V7rd/oj/
3HWO+dEQQ70VjusvApJp6pjJaKY9g68HVaEkM6AAUf8V6MObVOT6gOkTX6deKaU/
/WPbFxBJwpTure1SvX1lnrF8rxXUfdZOTHUNYINPcqtMt002qro=
=Gct5
-----END PGP SIGNATURE-----
Merge tag 'v0.63.1' into merge-back
Merge the tag back into main to make go modules aware that main is newer
than this tag.
Signed-off-by: Paul Holzinger <pholzing@redhat.com>