Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aledbf/kube-redis-sentinel
ulti-node Redis on Kubernetes
https://github.com/aledbf/kube-redis-sentinel
Last synced: about 2 months ago
JSON representation
ulti-node Redis on Kubernetes
- Host: GitHub
- URL: https://github.com/aledbf/kube-redis-sentinel
- Owner: aledbf
- Created: 2016-02-17T19:33:29.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-02-17T20:25:28.000Z (almost 9 years ago)
- Last Synced: 2024-10-14T15:56:48.969Z (3 months ago)
- Language: Shell
- Size: 15.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
```
# Create a bootstrap master
kubectl create -f redis-master.yaml# Create a service to track the sentinels
kubectl create -f redis-sentinel-service.yaml# Create a replication controller for redis servers
kubectl create -f redis-controller.yaml# Create a replication controller for redis sentinels
kubectl create -f redis-sentinel-controller.yaml# Scale both replication controllers
kubectl scale rc redis --replicas=3
kubectl scale rc redis-sentinel --replicas=3# Delete the original master pod
kubectl delete pods redis-master
```