Feat rebrand armature (#43)
All checks were successful
All checks were successful
Co-authored-by: Jeffrey Smith <jasafpro@gmail.com> Co-committed-by: Jeffrey Smith <jasafpro@gmail.com>
This commit was merged in pull request #43.
This commit is contained in:
@@ -1,14 +1,14 @@
|
||||
#!/usr/bin/env bash
|
||||
#
|
||||
# switchboard-ca.sh — Certificate provisioning for Switchboard Core mTLS.
|
||||
# armature-ca.sh — Certificate provisioning for Armature mTLS.
|
||||
#
|
||||
# Wraps openssl to generate a cluster CA, node certificates (ServerAuth +
|
||||
# ClientAuth), and user certificates (ClientAuth only). All output is PEM.
|
||||
#
|
||||
# Usage:
|
||||
# switchboard-ca init
|
||||
# switchboard-ca issue-node --name <node-name> --san <dns1,ip1,...>
|
||||
# switchboard-ca issue-user --cn <username> [--email <email>]
|
||||
# armature-ca init
|
||||
# armature-ca issue-node --name <node-name> --san <dns1,ip1,...>
|
||||
# armature-ca issue-user --cn <username> [--email <email>]
|
||||
#
|
||||
# Files are written to the current directory under ca/, nodes/, users/.
|
||||
|
||||
@@ -52,7 +52,7 @@ cmd_init() {
|
||||
-key "$CA_DIR/cluster-ca.key" \
|
||||
-out "$CA_DIR/cluster-ca.crt" \
|
||||
-days "$CA_DAYS" \
|
||||
-subj "/CN=Switchboard Cluster CA" \
|
||||
-subj "/CN=Armature Cluster CA" \
|
||||
-addext "basicConstraints=critical,CA:TRUE" \
|
||||
-addext "keyUsage=critical,keyCertSign,cRLSign" \
|
||||
2>/dev/null
|
||||
@@ -1,6 +1,6 @@
|
||||
#!/bin/bash
|
||||
# ============================================
|
||||
# Switchboard Core - Database Bootstrap
|
||||
# Armature - Database Bootstrap
|
||||
# ============================================
|
||||
# Idempotent: safe to run on every CI build.
|
||||
# Creates the app role and database if they
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#!/bin/bash
|
||||
# ============================================
|
||||
# Switchboard Core - Database Migration Runner
|
||||
# Armature - Database Migration Runner
|
||||
# ============================================
|
||||
# NOTE: The Go backend auto-migrates on startup.
|
||||
# This script is for manual/emergency use only.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#!/bin/bash
|
||||
# ============================================
|
||||
# Switchboard Core - Schema Validation (v0.16)
|
||||
# Armature - Schema Validation (v0.16)
|
||||
# ============================================
|
||||
# Verifies the database schema is correct after
|
||||
# migration. Checks expected tables, key columns,
|
||||
|
||||
Reference in New Issue
Block a user