Skip to content

v0.4.4

Choose a tag to compare

@moabukar moabukar released this 16 Apr 01:52
dc1b2fb

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: 1Gi

Also supports PostgreSQL backend via Kubernetes secrets:

databaseUrlSecret:
  name: pg-credentials
  key: connection-string

Security 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: false

Helm 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