Skip to content

Commit c5dd9b6

Browse files
author
Mahmood Ali
committed
update Vagrant to use Nomad 1.1.0
1 parent 4549f98 commit c5dd9b6

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Vagrantfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ Vagrant.configure("2") do |config|
3535
rm -f go1.14.3.linux-amd64.tar.gz
3636
fi
3737
38-
# Install nomad-1.0.2
38+
# Install nomad-1.1.0
3939
if [ ! -f "/usr/bin/nomad" ]; then
40-
wget --quiet https://releases.hashicorp.com/nomad/1.0.2/nomad_1.0.2_linux_amd64.zip
41-
unzip nomad_1.0.2_linux_amd64.zip -d /usr/bin
40+
wget --quiet https://releases.hashicorp.com/nomad/1.1.0/nomad_1.1.0_linux_amd64.zip
41+
unzip nomad_1.1.0_linux_amd64.zip -d /usr/bin
4242
chmod +x /usr/bin/nomad
43-
rm -f nomad_1.0.2_linux_amd64.zip
43+
rm -f nomad_1.1.0_linux_amd64.zip
4444
fi
4545
4646
# Install containerd-1.3.4

tests/run_tests.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -eo pipefail
44

5-
export NOMAD_VERSION=1.0.2
5+
export NOMAD_VERSION=1.1.0
66
export CONTAINERD_VERSION=1.3.4
77
export PATH=$PATH:/usr/local/go/bin
88
export PATH=$PATH:/usr/local/bin
@@ -144,7 +144,7 @@ EOF
144144
sudo chmod +x /usr/local/go
145145
rm -f go${GO_VERSION}.linux-amd64.tar.gz
146146

147-
# Install nomad 1.0.2
147+
# Install nomad 1.1.0
148148
curl -L -o nomad_${NOMAD_VERSION}_linux_amd64.zip https://releases.hashicorp.com/nomad/${NOMAD_VERSION}/nomad_${NOMAD_VERSION}_linux_amd64.zip
149149
sudo unzip -d /usr/local/bin nomad_${NOMAD_VERSION}_linux_amd64.zip
150150
sudo chmod +x /usr/local/bin/nomad

0 commit comments

Comments
 (0)