debuginfod: reduce verbosity, improve debuggability
Have Dockerfile add a few rpms needed for "oc rsync" and "oc rsh" diagnostics. Reduce default verbosity to -vv to avoid flooding logs with traversal msgs. Reduce scanner concurrency to 3, considering limited cpu resources on .stg.
This commit is contained in:
parent
110084afb1
commit
8d40bc0b51
2 changed files with 3 additions and 3 deletions
|
@ -17,7 +17,7 @@ items:
|
||||||
vendor="Fedora Infrastructure"
|
vendor="Fedora Infrastructure"
|
||||||
WORKDIR /
|
WORKDIR /
|
||||||
EXPOSE 8002
|
EXPOSE 8002
|
||||||
RUN dnf -y install bsdtar elfutils-debuginfod && \
|
RUN dnf -y install bsdtar elfutils-debuginfod sqlite3 procps-ng rsync tar && \
|
||||||
dnf autoremove -y
|
dnf autoremove -y
|
||||||
type: Dockerfile
|
type: Dockerfile
|
||||||
strategy:
|
strategy:
|
||||||
|
|
|
@ -25,9 +25,9 @@ spec:
|
||||||
- name: debuginfod
|
- name: debuginfod
|
||||||
image: debuginfod:latest
|
image: debuginfod:latest
|
||||||
command: ["/usr/bin/debuginfod",
|
command: ["/usr/bin/debuginfod",
|
||||||
"-vvv",
|
"-vv",
|
||||||
"-d", "/var/cache/debuginfod/db.sqlite",
|
"-d", "/var/cache/debuginfod/db.sqlite",
|
||||||
"-c", "8",
|
"-c", "3",
|
||||||
"-t", "3600",
|
"-t", "3600",
|
||||||
"-g", "604800",
|
"-g", "604800",
|
||||||
# exclude signed etc. variants, just want original RPMs
|
# exclude signed etc. variants, just want original RPMs
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue