- Update apt default packages to include dnsutils - Update the consul task to set up dns resolution through consul and systemd-resolved - Update the consul server config file to auto join hostnames instead of IP addresses, this makes the configuration for the playbook much easier - Add a docker task to install docker (works on arm devices also) - Updates the hashicorp apt role to allow arm devices to pull from the correct upstream repo
41 lines
1.1 KiB
YAML
41 lines
1.1 KiB
YAML
---
|
|
- name: Ensure required packages are installed
|
|
become: true
|
|
apt:
|
|
name: "{{ item }}"
|
|
with_items: ["software-properties-common", "gnupg"]
|
|
when: ansible_os_family == "Debian"
|
|
|
|
- name: Add Hashicorp apt key
|
|
become: true
|
|
shell:
|
|
cmd: "curl -fsSL https://apt.releases.hashicorp.com/gpg | sudo apt-key add -"
|
|
register: result
|
|
|
|
- name: Print out result
|
|
debug:
|
|
msg: "{{ result.stdout }}"
|
|
|
|
- name: Add Hashicorp repository (pis only)
|
|
become: true
|
|
shell:
|
|
cmd: 'sudo apt-add-repository -y "deb [arch=arm64] https://apt.releases.hashicorp.com $(lsb_release -cs) main"'
|
|
register: result
|
|
when: "'pis' in group_names"
|
|
|
|
- name: Print out results
|
|
debug:
|
|
msg: "{{ result.stdout }}"
|
|
when: "'pis' in group_names"
|
|
|
|
- name: Add Hashicorp repository (amd64)
|
|
become: true
|
|
shell:
|
|
cmd: 'sudo apt-add-repository -y "deb [arch=amd64] https://apt.releases.hashicorp.com $(lsb_release -cs) main"'
|
|
register: result
|
|
when: "'homelab' in group_names"
|
|
|
|
- name: Print out results
|
|
debug:
|
|
msg: "{{ result.stdout }}"
|
|
when: "'homelab' in group_names"
|