diff options
author | LUXEY Adrien <adrien.luxey@inria.fr> | 2021-03-23 16:57:10 +0100 |
---|---|---|
committer | LUXEY Adrien <adrien.luxey@inria.fr> | 2021-03-23 16:57:10 +0100 |
commit | 005a027fcb6e4c9a4d90da27963617b6463aa7f2 (patch) | |
tree | 83864c57a910bd620f634fd1f6949980b0469477 /os/config/roles/nomad | |
parent | 472384d4039d10dcfe1567b07f64ca6b1f8b744d (diff) | |
download | infrastructure-005a027fcb6e4c9a4d90da27963617b6463aa7f2.tar.gz infrastructure-005a027fcb6e4c9a4d90da27963617b6463aa7f2.zip |
WIP: improving Ansible config while I install my HammerHead
Diffstat (limited to 'os/config/roles/nomad')
-rw-r--r-- | os/config/roles/nomad/tasks/main.yml | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/os/config/roles/nomad/tasks/main.yml b/os/config/roles/nomad/tasks/main.yml index 1ddedbe..080a75f 100644 --- a/os/config/roles/nomad/tasks/main.yml +++ b/os/config/roles/nomad/tasks/main.yml @@ -1,14 +1,14 @@ -- name: "Set nomad version" - set_fact: - nomad_version: 1.0.2 +# - name: "Set nomad version" +# set_fact: +# nomad_version: 1.0.2 -- name: "Download and install Nomad for x86_64" - unarchive: - src: "https://releases.hashicorp.com/nomad/{{ nomad_version }}/nomad_{{ nomad_version }}_linux_amd64.zip" - dest: /usr/local/bin - remote_src: yes - when: - - "ansible_architecture == 'x86_64'" +# - name: "Download and install Nomad for x86_64" +# unarchive: +# src: "https://releases.hashicorp.com/nomad/{{ nomad_version }}/nomad_{{ nomad_version }}_linux_amd64.zip" +# dest: /usr/local/bin +# remote_src: yes +# when: +# - "ansible_architecture == 'x86_64'" - name: "Create Nomad configuration directory" file: path=/etc/nomad/ state=directory |