Releases: nats-io/k8s
Releases · nats-io/k8s
Release v0.4.2
Added
-
Added option to allow override name of resources (#62)
nameOverride: "my-nats"
-
Added support for
imagePullSecrets
(#67)imagePullSecrets: - name: myRegistry
-
Added support for podAnnotations (#72)
podAnnotations: foo: bar
-
Added support for cluster replicas (#72)
cluster: enabled: true replicas: 2
Fixed
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
Release v0.3.10
v0.3.10
Release v0.3.8
Fixed
- Fixed issue in nats chart allowing multiple gateway urls
Release v0.3.6
Now available on Helm Hub!
https://hub.helm.sh/charts/nats
Release v0.3.4
Fixed
- Fixed volume with tls in nats server (#40 )
Release v0.3.2
Helm charts v0.3.2
> helm repo add nats https://nats-io.github.io/k8s/helm/charts/
> helm repo update
> helm repo list
NAME URL
nats https://nats-io.github.io/k8s/helm/charts/
> helm search repo nats
NAME CHART VERSION APP VERSION DESCRIPTION
nats/nats 0.3.0 2.1.6 A Helm chart for the NATS.io High Speed Cloud N...
nats/nats-account-server 0.3.0 0.8.6 A Helm chart for the NATS.io JWT Account Server
nats/stan 0.3.0 0.17.0 A Helm chart for NATS Streaming
Added
- Added support for TLS to NATS (#38)
- Added support for gateways and leafnodes (#36)
- Added chart for NATS Account Server (#35)
- Added support for memory resolver in nats server (#33)
Changed
- Containers in NATS Server chart are now running as nonroot by default (#37)
- Default NATS Server version is now 2.1.6
Release v0.3.0
v0.3.0
Release v0.2.2
Includes store limits bug fix for NATS Streaming Helm chart #29
Release v0.2.0
Adds Helm charts to repository that can be installed via Helm 3:
> helm repo add nats https://nats-io.github.io/k8s/helm/charts/
> helm repo update
> helm repo list
NAME URL
nats https://nats-io.github.io/k8s/helm/charts/
> helm install my-nats nats/nats
> helm install my-stan nats/stan --set stan.nats.url=nats://my-nats:4222