Last active
March 12, 2019 14:07
-
-
Save asrivascrealytee/8cacba963564fa8177348bb8456d84e1 to your computer and use it in GitHub Desktop.
spawn local nomad consul
This file contains 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
default : nomad consul | |
.PHONY: nomad consul | |
nomad: | |
wget https://releases.hashicorp.com/nomad/0.9.0-beta3/nomad_0.9.0-beta3_linux_amd64.zip | |
unzip nomad_0.9.0-beta3_linux_amd64.zip | |
consul: | |
wget https://releases.hashicorp.com/consul/1.4.3/consul_1.4.3_linux_amd64.zip | |
unzip consul_1.4.3_linux_amd64.zip | |
launch_consul: | |
./consul agent -server -client 127.0.0.1 -advertise 127.0.0.1 -data-dir /tmp/consul -ui -bootstrap | |
launch_nomad: | |
./nomad agent -config nomad.conf |
Author
asrivascrealytee
commented
Mar 12, 2019
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment