Skip to content

Instantly share code, notes, and snippets.

@elfurbe
Created July 9, 2015 00:41
Show Gist options
  • Save elfurbe/83a34b1a8e6e6bd47194 to your computer and use it in GitHub Desktop.
Save elfurbe/83a34b1a8e6e6bd47194 to your computer and use it in GitHub Desktop.
ES Rancher Service Prototype
ES-Masters:
tty: true
command:
- elasticsearch
- -Des.cluster.name=sansabelt
- -Des.node.master=true
- -Des.node.data=false
- -Des.discovery.zen.ping.multicast.enabled=false
- -Des.discovery.zen.ping.unicast.hosts=datas,clients
image: elasticsearch
links:
- ES-Datas:datas
- ES-Clients:clients
stdin_open: true
ES-Clients:
tty: true
command:
- elasticsearch
- -Des.cluster.name=sansabelt
- -Des.node.master=false
- -Des.node.data=false
- -Des.discovery.zen.ping.multicast.enabled=false
- -Des.discovery.zen.ping.unicast.hosts=masters,datas
image: elasticsearch
links:
- ES-Masters:masters
- ES-Datas:datas
stdin_open: true
ES-Datas:
tty: true
command:
- elasticsearch
- -Des.cluster.name=sansabelt
- -Des.node.master=false
- -Des.node.data=true
- -Des.discovery.zen.ping.multicast.enabled=false
- -Des.discovery.zen.ping.unicast.hosts=masters,clients
image: elasticsearch
links:
- ES-Masters:masters
- ES-Clients:clients
stdin_open: true
ES-Masters:
scale: 1
ES-Clients:
scale: 5
ES-Datas:
scale: 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment