Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Nomad dependancy to 0.11.0 GA release #85

Merged
merged 2 commits into from
Apr 9, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ The compability requirements are as follows:
| Autoscaler Version | Nomad Version |
|:-------------------:|:-------------:|
| 0.0.1-techpreview1 | 0.11-beta1 |
| wip | 0.11-beta2 |
| wip | 0.11.0 |

## Documentation
Documentation is available within this repository [here](./docs/README.md).
Expand Down
4 changes: 2 additions & 2 deletions demo/vagrant/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ Vagrant.configure("2") do |config|
# Download and install Nomad and Consul.
pushd /tmp/downloads
curl --silent --show-error --remote-name-all \
https://releases.hashicorp.com/nomad/0.11.0-beta1/nomad_0.11.0-beta1_linux_amd64.zip \
https://releases.hashicorp.com/nomad/0.11.0/nomad_0.11.0_linux_amd64.zip \
https://releases.hashicorp.com/consul/1.7.2/consul_1.7.2_linux_amd64.zip
unzip nomad_0.11.0-beta1_linux_amd64.zip
unzip nomad_0.11.0_linux_amd64.zip
unzip consul_1.7.2_linux_amd64.zip
mkdir -p /opt/hashicorp/bin
mv nomad consul /opt/hashicorp/bin
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ require (
github.com/hashicorp/go-multierror v1.0.0
github.com/hashicorp/go-plugin v1.0.1
github.com/hashicorp/hcl/v2 v2.3.0
github.com/hashicorp/nomad/api v0.0.0-20200401211951-3e99ef7b1f7c
github.com/hashicorp/nomad/api v0.0.0-20200408184239-65bff323cf78
github.com/kr/pretty v0.2.0 // indirect
github.com/mattn/go-isatty v0.0.12 // indirect
github.com/mitchellh/cli v1.0.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ github.com/hashicorp/go-rootcerts v1.0.2 h1:jzhAVGtqPKbwpyCPELlgNWhE1znq+qwJtW5O
github.com/hashicorp/go-rootcerts v1.0.2/go.mod h1:pqUvnprVnM5bf7AOirdbb01K4ccR319Vf4pU3K5EGc8=
github.com/hashicorp/hcl/v2 v2.3.0 h1:iRly8YaMwTBAKhn1Ybk7VSdzbnopghktCD031P8ggUE=
github.com/hashicorp/hcl/v2 v2.3.0/go.mod h1:d+FwDBbOLvpAM3Z6J7gPj/VoAGkNe/gm352ZhjJ/Zv8=
github.com/hashicorp/nomad/api v0.0.0-20200401211951-3e99ef7b1f7c h1:im+zs9oC6vJV/5FqX2PgaZs0opQcWhVqA7orkWzPvUA=
github.com/hashicorp/nomad/api v0.0.0-20200401211951-3e99ef7b1f7c/go.mod h1:WKCL+tLVhN1D+APwH3JiTRZoxcdwRk86bWu1LVCUPaE=
github.com/hashicorp/nomad/api v0.0.0-20200408184239-65bff323cf78 h1:ely9ExJEs9t8I+wZwtS1zC21efQc1bussa6UGQcZ9yQ=
github.com/hashicorp/nomad/api v0.0.0-20200408184239-65bff323cf78/go.mod h1:WKCL+tLVhN1D+APwH3JiTRZoxcdwRk86bWu1LVCUPaE=
github.com/hashicorp/yamux v0.0.0-20180604194846-3520598351bb h1:b5rjCoWHc7eqmAS4/qyk21ZsHyb6Mxv/jykxvNTkU4M=
github.com/hashicorp/yamux v0.0.0-20180604194846-3520598351bb/go.mod h1:+NfK9FKeTrX5uv1uIXGdwYDTeHna2qgaIlx54MXqjAM=
github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU=
Expand Down