mirror of
https://github.com/dredx/prole.git
synced 2026-09-27 15:24:30 +00:00
- Secret Management: Integrated AESGCM for temporary secret handling in install.py and enhanced OpenBao (Vault) support with namespace injection and additional secret paths (Grafana, Kerberos, TDE).
- Infrastructure & K8s:
- Added Barman Object Store backup configuration (S3) to prole-db.yaml.
- Updated Prometheus deployment with PVC and persistent configuration.
- Updated k3s cluster/registry creation scripts.
- Added etc/build-a-bao.sh for OpenBao setup.
- MSSQL Integration: Updated docker scripts and k8s deployments for Prole MSSQL database.
- Documentation: Added docs/PROLE-CFG-SECRETS.md explaining the new secret handling.
- General: Refined initialization scripts (init_authority.sh, init_openbao.sh, etc.) and updated the ncurses installer.
13 lines
523 B
Bash
Executable File
13 lines
523 B
Bash
Executable File
# softwareupdate --install-rosetta
|
|
# docker pull mcr.microsoft.com/mssql/server:2022-latest
|
|
|
|
if [[ -z "${MSSQL_SA_PASSWORD:-}" ]]; then
|
|
echo "ERROR: MSSQL_SA_PASSWORD is required. Store it in OpenBao (kv/prole/<namespace>/mssql#sa_password) or export it." >&2
|
|
exit 1
|
|
fi
|
|
|
|
docker run -e "ACCEPT_EULA=Y" -e "MSSQL_SA_PASSWORD=$MSSQL_SA_PASSWORD" \
|
|
-p 1433:1433 --name mssql-server --platform linux/amd64 \
|
|
-v /Users/chrisfu/dev/prole/mssql/data:/var/opt/mssql/data \
|
|
-d mcr.microsoft.com/mssql/server:2022-latest
|