v0.4.4
Helm Chart Improvements
Persistent volume support (#83)
The Helm chart now supports persistent storage. Enable it in values.yaml to survive pod restarts:
persistence:
enabled: true
storageClass: "standard"
size: 1GiAlso supports PostgreSQL backend via Kubernetes secrets:
databaseUrlSecret:
name: pg-credentials
key: connection-stringSecurity context (#88)
Secure defaults are now set on the container, matching the Dockerfile's non-root user:
securityContext:
runAsNonRoot: true
runAsUser: 65534
readOnlyRootFilesystem: true
allowPrivilegeEscalation: falseHelm chart version bumped to 0.3.0.
Documentation
Scope and philosophy (#76)
New docs page explaining the control plane vs data plane distinction, when to use miniblue vs real Azure, and the design principles behind the project. See architecture/scope.
Full Changelog: v0.4.3...v0.4.4