From a4b9f53d43b6fc03c28fa8639311c79d1ea0c1c6 Mon Sep 17 00:00:00 2001 From: Preetha Appan Date: Fri, 3 May 2019 17:07:27 -0500 Subject: [PATCH] update changelog --- CHANGELOG.md | 1 + dev/cluster/cluster.sh | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100755 dev/cluster/cluster.sh diff --git a/CHANGELOG.md b/CHANGELOG.md index 56972a880..6a12d1acb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ BUG FIXES: * vault: Fix renewal time to be 1/2 lease duration with jitter [[GH-5479](https://github.com/hashicorp/nomad/issues/5479)] * metrics: Fixed stale metrics [[GH-5540](https://github.com/hashicorp/nomad/issues/5540)] * client: Fix network fingerprinting to honor manual configuration [[GH-2619](https://github.com/hashicorp/nomad/issues/2619)] + * client: Fix issue with terminal state deployments being modified when allocation subsequently fails [[GH-5645](https://github.com/hashicorp/nomad/issues/5645)] ## 0.9.1 (April 29, 2019) diff --git a/dev/cluster/cluster.sh b/dev/cluster/cluster.sh new file mode 100755 index 000000000..e3260ca58 --- /dev/null +++ b/dev/cluster/cluster.sh @@ -0,0 +1,12 @@ +# launch server +( nomad agent -config=server1.hcl 2>&1 | tee "/tmp/server1/log" ; echo "Exit code: $?" >> "/tmp/server1/log" ) & + +( nomad agent -config=server2.hcl 2>&1 | tee "/tmp/server2/log" ; echo "Exit code: $?" >> "/tmp/server2/log" ) & + +( nomad agent -config=server3.hcl 2>&1 | tee "/tmp/server3/log" ; echo "Exit code: $?" >> "/tmp/server3/log" ) & + +# launch client 1 +( nomad agent -config=client1.hcl 2>&1 | tee "/tmp/client1/log" ; echo "Exit code: $?" >> "/tmp/client1/log" ) & + +# launch client 2 +( nomad agent -config=client2.hcl 2>&1 | tee "/tmp/client2/log" ; echo "Exit code: $?" >> "/tmp/client2/log" ) &