diff options
Diffstat (limited to 'ansible/roles')
-rw-r--r-- | ansible/roles/nomad/tasks/main.yml | 19 | ||||
-rw-r--r-- | ansible/roles/nomad/templates/nomad.hcl.j2 | 12 |
2 files changed, 29 insertions, 2 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 diff --git a/ansible/roles/nomad/templates/nomad.hcl.j2 b/ansible/roles/nomad/templates/nomad.hcl.j2 index c7a8b94..55aa481 100644 --- a/ansible/roles/nomad/templates/nomad.hcl.j2 +++ b/ansible/roles/nomad/templates/nomad.hcl.j2 @@ -31,6 +31,16 @@ client { docker.privileged.enabled = "true" docker.volumes.enabled = "true" } - #network_interface = "wgdeuxfleurs" + + network_interface = "wgdeuxfleurs" + + host_network "default" { + #cidr = "{{ vpn_ip }}/24" + interface = "wgdeuxfleurs" + } + host_network "public" { + #cidr = "{{ public_ip }}/32" + interface = "{{ interface }}" + } } |