Open
Description
Issue Description
I was trying to get podman to recognize runc in a custom location, and had written an incorrect toml file.
The diagnostics (logrus.Tracef, logrus.Debugf calls) for this are emitted are sufficient, but as the configuration happens as global initialization, they are suppressed: processing the --log-level
flag happens later.
I looked for an env var to control this, but couldn't find one in the manpage.
I finally resolved it by recompiling podman and inserting a logrus.SetLevel()
call in vendor/github.com/containers/common/pkg/config/new.go
Steps to reproduce the issue
- write invalid configuration (eg. non-existent keys) in /usr/share/containers/containers.conf
- run podman --log-level=trace info
Describe the results you received
observe that nothing is printed about invalid keys:
# go build -o bin/podman -tags "apparmor systemd exclude_graphdriver_devicemapper seccomp " ./cmd/podman && ./bin/podman --log-level=trace info
INFO[0000] ./bin/podman filtering at log level trace
Describe the results you expected
I wanted to see some of the diagnostic such as
TRAC[0000] Reading configuration file "/usr/share/containers/containers.conf"
DEBU[0000] Failed to decode the keys ["runtime"] from "/usr/share/containers/containers.conf".
podman info output
# git rev-parse HEAD
aafc3739fbeab6afb192723f7be3ef537af10eb3
# go build -o bin/podman -tags "apparmor systemd exclude_graphdriver_devicemapper seccomp " ./cmd/podman && ./bin/podman info
host:
arch: amd64
buildahVersion: 1.39.0
cgroupControllers:
- cpuset
- cpu
- io
- memory
- hugetlb
- pids
- rdma
- misc
cgroupManager: systemd
cgroupVersion: v2
conmon:
package: Unknown
path: /usr/local/libexec/podman/conmon
version: 'conmon version 2.1.12, commit: unknown'
cpuUtilization:
idlePercent: 99.69
systemPercent: 0.05
userPercent: 0.26
cpus: 2
databaseBackend: sqlite
distribution:
codename: bookworm
distribution: debian
version: "12"
eventLogger: journald
freeLocks: 2047
hostname: ip-172-31-7-139
idMappings:
gidmap: null
uidmap: null
kernel: 6.1.0-31-cloud-amd64
linkmode: dynamic
logDriver: journald
memFree: 912863232
memTotal: 4115464192
networkBackend: netavark
networkBackendInfo:
backend: netavark
dns:
package: Unknown
path: /usr/local/libexec/podman/aardvark-dns
version: aardvark-dns 1.14.0
package: Unknown
path: /usr/local/libexec/podman/netavark
version: netavark 1.14.0
ociRuntime:
name: runc
package: Unknown
path: /usr/local/libexec/podman/runc
version: |-
runc version 1.2.4
spec: 1.2.0
go: go1.23.6
libseccomp: 2.5.4
os: linux
pasta:
executable: ""
package: ""
version: ""
remoteSocket:
exists: true
path: /run/podman/podman.sock
rootlessNetworkCmd: pasta
security:
apparmorEnabled: true
capabilities: CAP_CHOWN,CAP_DAC_OVERRIDE,CAP_FOWNER,CAP_FSETID,CAP_KILL,CAP_NET_BIND_SERVICE,CAP_SETFCAP,CAP_SETGID,CAP_SETPCAP,CAP_SETUID,CAP_SYS_CHROOT
rootless: false
seccompEnabled: true
seccompProfilePath: ""
selinuxEnabled: false
serviceIsRemote: false
slirp4netns:
executable: ""
package: ""
version: ""
swapFree: 0
swapTotal: 0
uptime: 23h 3m 13.00s (Approximately 0.96 days)
variant: ""
plugins:
authorization: null
log:
- k8s-file
- none
- passthrough
- journald
network:
- bridge
- macvlan
- ipvlan
volume:
- local
registries: {}
store:
configFile: /usr/share/containers/storage.conf
containerStore:
number: 1
paused: 0
running: 1
stopped: 0
graphDriverName: overlay
graphOptions: {}
graphRoot: /var/lib/containers/storage
graphRootAllocated: 16665681920
graphRootUsed: 6612668416
graphStatus:
Backing Filesystem: extfs
Native Overlay Diff: "true"
Supports d_type: "true"
Supports shifting: "true"
Supports volatile: "true"
Using metacopy: "false"
imageCopyTmpDir: /var/tmp
imageStore:
number: 1
runRoot: /run/containers/storage
transientStore: false
volumePath: /var/lib/containers/storage/volumes
version:
APIVersion: 5.5.0-dev
Built: 0
BuiltTime: Thu Jan 1 00:00:00 1970
GitCommit: ""
GoVersion: go1.23.6
Os: linux
OsArch: linux/amd64
Version: 5.5.0-dev
Podman in a container
No
Privileged Or Rootless
None
Upstream Latest Release
Yes
Additional environment details
Additional environment details
Additional information
No response