update (bart)
Validate Lakehouse config / validate (push) Has been cancelled

This commit is contained in:
Lakehouse Admin
2026-06-28 17:08:57 +02:00
parent 8eb64381e3
commit 0402a4fbae
21 changed files with 2471 additions and 74 deletions
@@ -0,0 +1,15 @@
// Idempotent admin users for lab (mo + bart)
db = db.getSiblingDB("admin");
var pw = "Dell2026!";
["mo", "bart"].forEach(function(name) {
if (db.getUser(name) == null) {
db.createUser({
user: name,
pwd: pw,
roles: [{ role: "root", db: "admin" }]
});
print("Created user: " + name);
} else {
print("User exists: " + name);
}
});