File tree Expand file tree Collapse file tree 6 files changed +7
-6
lines changed
tests/demand-backup-retry Expand file tree Collapse file tree 6 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -707,7 +707,7 @@ run_mysql_query_file() {
707707 wait_pod $client_pod 1>&2
708708
709709 cat " $file " | kubectl -n " ${NAMESPACE} " exec -i " ${pod:- mysql-client} " -- \
710- bash -c " mysql -sN $host $user " 2>&1 | \
710+ bash -c " mysql -sN $host $user 2>&1" 2> /dev/null | \
711711 grep -v ' Using a password on the command line interface can be insecure.' || :
712712}
713713
Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ commands:
1616 | yq eval ".spec.proxy.haproxy.size=3" - \
1717 | yq eval ".spec.orchestrator.enabled=true" - \
1818 | yq eval ".spec.orchestrator.size=3" - \
19- | yq eval ".spec.backup.backoffLimit=3" - \
2019 | yq eval '.spec.backup.storages.minio.type="s3"' - \
2120 | yq eval '.spec.backup.storages.minio.s3.bucket="operator-testing"' - \
2221 | yq eval '.spec.backup.storages.minio.s3.credentialsSecret="minio-secret"' - \
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ commands:
1414 (.spec.template.spec.containers[].env[] | select(.name == \"MYSQL_HOST\")).value = \"${cluster_name}-haproxy\" |
1515 (.spec.template.spec.containers[].env[] | select(.name == \"MYSQL_PASSWORD\")).valueFrom.secretKeyRef.name = \"${cluster_name}-secrets\" |
1616 (.spec.template.spec.containers[].env[] | select(.name == \"MYSQL_DB\")).value = \"myDB\" |
17- (.spec.template.spec.containers[].env[] | select(.name == \"TABLE_NUMBER\")).value = \"100 \" |
17+ (.spec.template.spec.containers[].env[] | select(.name == \"TABLE_NUMBER\")).value = \"130 \" |
1818 (.spec.template.spec.containers[].env[] | select(.name == \"TABLE_SIZE\")).value = \"50000\" |
1919 .
2020 " ../../conf/sysbench-oltp-write.yaml | kubectl apply -n "${NAMESPACE}" -f -
Original file line number Diff line number Diff line change 11apiVersion : kuttl.dev/v1beta1
22kind : TestAssert
3- timeout : 30
3+ timeout : 120
44---
55apiVersion : batch/v1
66kind : Job
Original file line number Diff line number Diff line change 11apiVersion : kuttl.dev/v1beta1
22kind : TestAssert
3- timeout : 500
3+ timeout : 600
44---
55apiVersion : ps.percona.com/v1
66kind : PerconaServerMySQL
Original file line number Diff line number Diff line change 11USE myDB;
2- SET SESSION net_read_timeout = 60 ;
2+
3+ SET SESSION max_allowed_packet = 1073741824 ;
4+
35DROP PROCEDURE IF EXISTS count_rows;
46
57DELIMITER $$
You can’t perform that action at this time.
0 commit comments