This project provides a deployment manifest for Zookeeper into Kubernetes. The source was originally from the official Kubernetes tutorial. Zookeeper provides a distributed co-ordination system and ultimately for Sauce we use this to provide a highly available file-system with a co-ordinated leader for write operations and multiple read-only followers. See the official Apache Zookeeper website for more information about how Zookeeper works.
To run local you should have:
- a Kubernetes cluster running on your machine and
kubectlshould be configured to your local cluster.
Once you have those up and running deploy the manifest to your local cluster
kustomize build dist/overlays/local | kubectl apply -f -
You should see Zookeeper being deployed into the default namespace in your local cluster.