Created
July 9, 2015 00:41
-
-
Save elfurbe/83a34b1a8e6e6bd47194 to your computer and use it in GitHub Desktop.
ES Rancher Service Prototype
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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