48a3d6be33
Parameterized, NO-VPS-touched material to bring up unibus as a 3-node cluster. The authoring agent ran none of it on a host; every remote-changing step is marked HUMAN and deploy-cluster.sh defaults to a dry run. deploy/cluster/: - nodes.env — topology (cluster name, ports, per-node rows). Public IPs known (homer 141.94.69.66, datardos 51.91.100.142) pre-filled; magnus public IP and all WireGuard IPs are <PLACEHOLDER> for the human; scripts refuse to run while any remain. - generate-cluster-certs.sh — mints a SEPARATE cluster route CA + a route cert per node (server+clientAuth, mutual routes) and a data-plane server cert per node signed by the reused client CA (../tls/ca.*); SAN = public + WG + hostname. - membershipd-cluster.service — one unit, parameterized per node via /opt/unibus/cluster.env: enforce + per-subject ACL + TLS + --store kv, --cluster-pass-file (secret out of argv), Restart=always. - deploy-cluster.sh — cross-build linux/amd64, generate each node's cluster.env (routes to the other two on the WG mesh, no userinfo), rsync + install (only with --yes); staggered start is manual. - README.md — runbook: prerequisites, loopback bootstrap to seed the first admin into the KV (works around the user-CLI/KV chicken-and-egg), staggered bring-up, verify posture+quorum, scale R1->R3 in place, and the chaos test (left to 0003f on the real VPS). - .gitignore — out/, build/, secrets/, *.key never committed. bash -n passes on both scripts; go build/test unchanged. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
46 lines
1.6 KiB
Desktop File
46 lines
1.6 KiB
Desktop File
[Unit]
|
|
# unibus membershipd — cluster node (issue 0006g).
|
|
#
|
|
# One unit, parameterized per node by /opt/unibus/cluster.env (generated by
|
|
# deploy-cluster.sh): NODE_NAME, ROUTES and the cert paths differ per node, the
|
|
# rest of the posture (enforce + per-subject ACL + TLS + --store kv) is identical
|
|
# on every node, which is the homogeneous posture a secure cluster requires
|
|
# (audit 0008 N1).
|
|
Description=unibus membershipd (cluster node)
|
|
After=network-online.target
|
|
Wants=network-online.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
WorkingDirectory=/opt/unibus
|
|
EnvironmentFile=/opt/unibus/cluster.env
|
|
# The route password comes from a FILE referenced by ${CLUSTER_PASS_FILE}, never
|
|
# from argv (audit 0008 N1-low). The peer --routes carry no userinfo; membershipd
|
|
# injects the credentials from the file/user.
|
|
ExecStart=/opt/unibus/membershipd \
|
|
--bind 0.0.0.0 \
|
|
--bus-auth enforce \
|
|
--http-port ${HTTP_PORT} \
|
|
--nats-port ${NATS_CLIENT_PORT} \
|
|
--tls-cert ${TLS_CERT} \
|
|
--tls-key ${TLS_KEY} \
|
|
--cluster-name ${CLUSTER_NAME} \
|
|
--server-name ${NODE_NAME} \
|
|
--cluster-port ${NATS_ROUTE_PORT} \
|
|
--routes ${ROUTES} \
|
|
--cluster-user ${CLUSTER_USER} \
|
|
--cluster-pass-file ${CLUSTER_PASS_FILE} \
|
|
--route-tls-cert ${ROUTE_TLS_CERT} \
|
|
--route-tls-key ${ROUTE_TLS_KEY} \
|
|
--route-tls-ca ${ROUTE_TLS_CA} \
|
|
--store kv \
|
|
--kv-replicas ${KV_REPLICAS}
|
|
# Restart=always (NOT on-failure): a clean SIGTERM exits success, and on-failure
|
|
# would then NOT restart, leaving the node silently dead (see function_tags.md).
|
|
Restart=always
|
|
RestartSec=2
|
|
LimitNOFILE=65536
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|