We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a24500 commit 938c064Copy full SHA for 938c064
.github/workflows/ci.yaml
@@ -267,6 +267,20 @@ jobs:
267
\"
268
"
269
270
+ - name: Ensure OAuth user exists and mapped
271
+ run: |
272
+ NS=my-verticadb-operator
273
+ POD=verticadb-sample-defaultsubcluster-0
274
+ echo "Ensuring OAuth user and mapping exist..."
275
+ kubectl -n ${NS} exec ${POD} -c server -- bash -c "
276
+ /opt/vertica/bin/vsql -U dbadmin -c \"
277
+ CREATE USER IF NOT EXISTS oauth_user;
278
+ GRANT CONNECT ON DATABASE vdb TO oauth_user;
279
+ GRANT AUTHENTICATION v_oauth TO oauth_user;
280
+ \"
281
+ "
282
+ echo "✅ OAuth user ensured and mapped to v_oauth"
283
+
284
- name: Run Python tests in-cluster (robust + execution)
285
run: |
286
set -euo pipefail
0 commit comments