diff --git a/testing/common.sh b/testing/common.sh index b0f8d7750bf..ec516753df5 100644 --- a/testing/common.sh +++ b/testing/common.sh @@ -722,7 +722,7 @@ function check_tenant_status() { condition=jsonpath='{.status.currentState}'=Initialized selector="metadata.name=$2" - try wait_for_resource_field_selector "$1" tenant $condition "$selector" 600s + try wait_for_resource_field_selector "$1" tenant $condition "$selector" 1200s if [ $# -ge 4 ]; then echo "Fourth argument provided, then get secrets from helm" diff --git a/testing/tenant-hotfix-update.sh b/testing/tenant-hotfix-update.sh index 81f02739dc9..182496bbe52 100755 --- a/testing/tenant-hotfix-update.sh +++ b/testing/tenant-hotfix-update.sh @@ -103,8 +103,6 @@ function install_tenant_with_image() { fi kustomize build "${SCRIPT_DIR}/../examples/kustomization/tenant-lite" > tenant-lite.yaml yq -i e "select(.kind == \"Tenant\").spec.image = \"${minio_image}\"" tenant-lite.yaml - yq -i e "select(.kind == \"Tenant\").spec.pools.0.servers = 2" tenant-lite.yaml - #yq -i e "select(.kind == \"Secret\" and .metadata.name == \"storage-configuration\").stringData.\"config.env\" |= sub(\"EC:2\", \"EC:0\")" tenant-lite.yaml try kubectl apply -f tenant-lite.yaml }