fleet: single-host ultix — all 9 accounts, offstage collapsed (Charles)

This commit is contained in:
2026-08-29 16:34:51 -05:00
parent 0e6313ef3f
commit bf8e2714f3
2 changed files with 3 additions and 4 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
# Fleet staging — 9 accounts, 2 hosts, one container per account (prod 0700 Mon)
# Fleet staging — 9 accounts, ONE host (ultix, 48GB), one container per account (prod 0700 Mon)
Morning sequence (Charles wires TSGCOO first, then iterate/explore/test):
1. ROOT on each host: scripts/fleet/root-create-accounts.sh streaming|offstage
+2 -3
View File
@@ -5,10 +5,9 @@
# ultix-streaming: bash root-create-accounts.sh streaming
# ultix-offstage: bash root-create-accounts.sh offstage
set -eu
HOST="${1:?usage: root-create-accounts.sh streaming|offstage}"
HOST="${1:?usage: root-create-accounts.sh ultix}"
case "$HOST" in
streaming) USERS="reachableceo TSGBOD TSGCOO TSGCTO TSGCCO" ;;
offstage) USERS="reachableceo-offstage COSRCEO-Personal COSRCEO-Biz COSWFO" ;;
ultix) USERS="reachableceo TSGBOD TSGCOO TSGCTO TSGCCO reachableceo-offstage COSRCEO-Personal COSRCEO-Biz COSWFO" ;;
*) echo "unknown host $HOST" >&2; exit 1 ;;
esac
DOCKER_GID="$(stat -c %g /var/run/docker.sock)"