You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm currently trying to get NATS streaming (file based persistence) working clustered on K8s on GCP and was wondering what state this project is in for that particular use case.
This operator has to be updated to use statefulsets which should have been the way to go. So for GCP, I'd suggest starting with statefulsets and volume claims for now, that would be a simple way to start. Sharing some examples here:
# Create NATS cluster
kubectl apply -f https://raw.githubusercontent.com/nats-io/k8s/master/nats-server/simple-nats.yml
# Create STAN cluster
kubectl apply -f https://raw.githubusercontent.com/nats-io/k8s/master/nats-streaming-server/simple-stan.yml
# Create nats-box with tools
kubectl run -i --rm --tty nats-box --image=synadia/nats-box --restart=Never
# Send message to NATS# nats-sub -s nats hello &# nats-pub -s nats hello world# Send/Receive message to STAN# stan-pub -s nats -c stan hello world# stan-sub -s nats -c stan hello
I'm currently trying to get NATS streaming (file based persistence) working clustered on K8s on GCP and was wondering what state this project is in for that particular use case.
Currently basic set up seems broken: #61
And replies to this issue seem to suggest using auto node updates isn't possible: #40
And this issue seems to suggest clustered, file based persistence isn't working: #23
Have I misunderstood any of these issues? And if not is there a project that meets these needs?
The text was updated successfully, but these errors were encountered: