diff --git a/test-framework/helm/property-settings-svc-v2/templates/job-dbinit.yaml b/test-framework/helm/property-settings-svc-v2/templates/job-dbinit.yaml index a6be2c9..0588ffe 100644 --- a/test-framework/helm/property-settings-svc-v2/templates/job-dbinit.yaml +++ b/test-framework/helm/property-settings-svc-v2/templates/job-dbinit.yaml @@ -92,7 +92,7 @@ spec: echo -n "Applying $filename... " - if mysql -h"${MYSQL_HOST}" -P"${MYSQL_PORT}" -u"root" < "$sql_file" 2>/tmp/migration_error.log; then + if mysql -h"${MYSQL_HOST}" -P"${MYSQL_PORT}" -u"${MYSQL_USER}" < "$sql_file" 2>/tmp/migration_error.log; then echo "✓ SUCCESS" SUCCESS=$((SUCCESS + 1)) else