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 45402ad commit e44f7e6Copy full SHA for e44f7e6
e2e-tests/functions
@@ -474,7 +474,7 @@ check_passwords_leak() {
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
+ if [[ ${c} =~ "pmm" ]]; then
478
continue
479
fi
480
kubectl -n "$NS" logs $p -c $c > ${TEMP_DIR}/logs_output-$p-$c.txt
@@ -496,4 +496,4 @@ check_passwords_leak() {
496
pods=$(kubectl -n "${OPERATOR_NS}" get pods -o name | awk -F "/" '{print $2}')
497
collect_logs $OPERATOR_NS
498
499
-}
+}
0 commit comments