Public bao.coulomb.social was retracted today and now presents Traefik's default certificate. Login must use http://127.0.0.1:18200 via openbao-attended-exec.py, matching the sitting-requester path. Assistant: grok Assistant-Session: 01a0a182-bab7-7f11-b32b-d06f3af52082
12 lines
617 B
Bash
Executable file
12 lines
617 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Parent-env wrapper for the attended tenant-engine sender mint.
|
|
#
|
|
# Public https://bao.coulomb.social was retracted 2026-09-15
|
|
# (RMASTER-WP-0020-T09). Operator login is the named tunnel
|
|
# openbao-ui-railiance01 → http://127.0.0.1:18200. railiance-platform's
|
|
# openbao-attended-exec.py pins that address for both OIDC and the child.
|
|
set -euo pipefail
|
|
export RAILIANCE01_KUBECONFIG="${RAILIANCE01_KUBECONFIG:-$HOME/.kube/config-railiance01}"
|
|
cd "$(dirname "$0")/.."
|
|
exec python3 /home/worsch/railiance-platform/scripts/openbao-attended-exec.py -- \
|
|
"$PWD/scripts/mint-tenant-engine-sender.py"
|