We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c00792 commit 2251903Copy full SHA for 2251903
e2e-tests/functions
@@ -473,11 +473,7 @@ check_passwords_leak() {
473
for p in $pods; do
474
containers=$(kubectl -n "$NS" get pod $p -o jsonpath='{.spec.containers[*].name}')
475
for c in $containers; do
476
- # temporary, because of: https://jira.percona.com/browse/PMM-8357
477
- if [[ ${c} =~ "pmm" ]]; then
478
- continue
479
- fi
480
- kubectl -n "$NS" logs $p -c $c > ${TEMP_DIR}/logs_output-$p-$c.txt
+ kubectl -n "$NS" logs $p -c $c >${TEMP_DIR}/logs_output-$p-$c.txt
481
echo logs saved in: ${TEMP_DIR}/logs_output-$p-$c.txt
482
for pass in $passwords; do
483
count=$(grep -c --fixed-strings -- "$pass" ${TEMP_DIR}/logs_output-$p-$c.txt || :)
0 commit comments