Skip to content

Commit 2251903

Browse files
authored
CLOUD-789 - Don't ignore pmm for password leaks check (#422)
since it should be fixed under K8SPS-272
1 parent 2c00792 commit 2251903

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

e2e-tests/functions

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -473,11 +473,7 @@ check_passwords_leak() {
473473
for p in $pods; do
474474
containers=$(kubectl -n "$NS" get pod $p -o jsonpath='{.spec.containers[*].name}')
475475
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
476+
kubectl -n "$NS" logs $p -c $c >${TEMP_DIR}/logs_output-$p-$c.txt
481477
echo logs saved in: ${TEMP_DIR}/logs_output-$p-$c.txt
482478
for pass in $passwords; do
483479
count=$(grep -c --fixed-strings -- "$pass" ${TEMP_DIR}/logs_output-$p-$c.txt || :)

0 commit comments

Comments
 (0)