github nats-io/k8s v0.4.0
Release v0.4.0

latest releases: surveyor-0.16.0, nats-0.19.12, nack-0.21.0...
3 years ago

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 and accessModes 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 of store 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

Don't miss a new k8s release

NewReleases is sending notifications on new releases.