aboutsummaryrefslogtreecommitdiff
path: root/ansible/roles/nomad/tasks
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2020-07-01 15:36:22 +0200
committerAlex Auvolat <alex@adnab.me>2020-07-15 16:06:08 +0200
commit24118ab426f08e5bbfd9e53faeab09ac09f44313 (patch)
treebcde57236c7dfb4d848843dbd4519c2146ba1f2f /ansible/roles/nomad/tasks
parent65af077d5a046bfecd94ca0e203c61a2e214db2d (diff)
downloadinfrastructure-24118ab426f08e5bbfd9e53faeab09ac09f44313.tar.gz
infrastructure-24118ab426f08e5bbfd9e53faeab09ac09f44313.zip
Make things work on cluster devx.adnab.me
Diffstat (limited to 'ansible/roles/nomad/tasks')
-rw-r--r--ansible/roles/nomad/tasks/main.yml19
1 files changed, 18 insertions, 1 deletions
diff --git a/ansible/roles/nomad/tasks/main.yml b/ansible/roles/nomad/tasks/main.yml
index 7c73362..3bfd3a6 100644
--- a/ansible/roles/nomad/tasks/main.yml
+++ b/ansible/roles/nomad/tasks/main.yml
@@ -1,7 +1,11 @@
-- name: "Set nomad version"
+- name: "Set Nomad version"
set_fact:
nomad_version: 0.12.0-beta2
+- name: "Set CNI version"
+ set_fact:
+ cni_plugins_version: 0.8.6
+
- name: "Download and install Nomad for x86_64"
unarchive:
src: "https://releases.hashicorp.com/nomad/{{ nomad_version }}/nomad_{{ nomad_version }}_linux_amd64.zip"
@@ -10,6 +14,19 @@
when:
- "ansible_architecture == 'x86_64'"
+- name: "Create /opt/cni/bin"
+ file: path=/opt/cni/bin state=directory
+
+- name: "Download and install CNI plugins for x86_64"
+ unarchive:
+ src: "https://github.com/containernetworking/plugins/releases/download/v{{ cni_plugins_version }}/cni-plugins-linux-amd64-v{{ cni_plugins_version }}.tgz"
+ dest: /opt/cni/bin
+ remote_src: yes
+ when:
+ - "ansible_architecture == 'x86_64'"
+ notify:
+ - restart nomad
+
- name: "Create Nomad configuration directory"
file: path=/etc/nomad/ state=directory