Release v0.4.0
Fixed
- Fixed store.file.path not working on NFS (stan / #58)
Added
-
Added
affinity
blocks to both NATS and STAN charts (#54) -
Added support for service bound tokens generated by the operator (#57)
-
Added
replicas
andaccessModes
settings to support Fault Tolerance setup.
stan:
replicas: 2
nats:
url: "nats://my-nats:4222"
store:
type: file
#
# Fault tolerance group
#
ft:
group: foo
#
# File storage settings.
#
file:
path: /data/stan/store
# volume for EFS
volume:
mount: /data/stan
storageSize: 1Gi
storageClass: aws-efs
accessModes: ReadWriteMany
Changed
- Changed
storageSize
as part ofstore
block,volumes
should be used instead:
store:
type: file
file:
storageSize: 100Gi
Should be changed to use volume
instead:
store:
type: file
file:
path: /data/stan/store
volume:
mount: /data/stan
storageSize: 100Gi