diff options
author | Quentin <quentin@dufour.io> | 2020-07-05 20:37:19 +0200 |
---|---|---|
committer | Quentin <quentin@dufour.io> | 2020-07-05 20:37:19 +0200 |
commit | 09878271f2a207ffb33c1f293dd26ee97cc6fff2 (patch) | |
tree | ee8d82b8640deed41acf13ab5cce94045ebc3081 /ansible/roles/consul/tasks | |
parent | f427bcf5645d92604be3994496bf44bd93f5c7e3 (diff) | |
parent | faf39bbb282542efa237c39f4371918589508254 (diff) | |
download | infrastructure-09878271f2a207ffb33c1f293dd26ee97cc6fff2.tar.gz infrastructure-09878271f2a207ffb33c1f293dd26ee97cc6fff2.zip |
Merge pull request 'Network configuration' (#1) from network_config into master
Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/deuxfleurs.fr/pulls/1
Diffstat (limited to 'ansible/roles/consul/tasks')
-rw-r--r-- | ansible/roles/consul/tasks/main.yml | 31 |
1 files changed, 4 insertions, 27 deletions
diff --git a/ansible/roles/consul/tasks/main.yml b/ansible/roles/consul/tasks/main.yml index bb1d9ef..2b77080 100644 --- a/ansible/roles/consul/tasks/main.yml +++ b/ansible/roles/consul/tasks/main.yml @@ -1,16 +1,6 @@ - name: "Set consul version" set_fact: - consul_version: 1.7.4 - -- name: "Download and install Consul for armv7l" - unarchive: - src: "https://releases.hashicorp.com/consul/{{ consul_version }}/consul_{{ consul_version }}_linux_arm.zip" - dest: /usr/local/bin - remote_src: yes - when: - - "ansible_architecture == 'armv7l'" - notify: - - restart consul + consul_version: 1.8.0 - name: "Download and install Consul for x86_64" unarchive: @@ -19,31 +9,18 @@ remote_src: yes when: - "ansible_architecture == 'x86_64'" - notify: - - restart consul - -- name: "Download and install Consul for arm64" - unarchive: - src: "https://releases.hashicorp.com/consul/{{ consul_version }}/consul_{{ consul_version }}_linux_arm64.zip" - dest: /usr/local/bin - remote_src: yes - when: - - "ansible_architecture == 'aarch64'" - notify: - - restart consul - name: "Create consul configuration directory" file: path=/etc/consul/ state=directory - name: "Deploy consul configuration" template: src=consul.json.j2 dest=/etc/consul/consul.json - notify: - - restart consul - name: "Deploy consul systemd service" copy: src=consul.service dest=/etc/systemd/system/consul.service - notify: - - restart consul - name: "Enable consul systemd service at boot" service: name=consul state=started enabled=yes daemon_reload=yes + +- name: "Deploy resolv.conf to use Consul" + template: src=resolv.conf.j2 dest=/etc/resolv.conf |