2022-02-16 17:56:18 +00:00
|
|
|
---
|
|
|
|
- name: Build Consul cluster
|
|
|
|
hosts: consul_instances
|
|
|
|
any_errors_fatal: true
|
|
|
|
|
|
|
|
roles:
|
2022-03-12 18:07:52 +00:00
|
|
|
- role: ansible-consul
|
|
|
|
vars:
|
|
|
|
consul_version: "1.11.3"
|
|
|
|
consul_install_remotely: true
|
|
|
|
consul_install_upgrade: true
|
|
|
|
|
|
|
|
consul_node_role: server
|
|
|
|
consul_bootstrap_expect: true
|
|
|
|
|
|
|
|
consul_user: consul
|
|
|
|
consul_manage_user: true
|
|
|
|
consul_group: bin
|
|
|
|
consul_manage_group: true
|
|
|
|
|
|
|
|
consul_architecture_map:
|
|
|
|
x86_64: amd64
|
|
|
|
armhfv6: arm
|
|
|
|
armv7l: arm
|
|
|
|
|
|
|
|
# consul_tls_enable: true
|
|
|
|
consul_connect_enabled: true
|
|
|
|
consul_ports_grpc: 8502
|
|
|
|
consul_client_address: "0.0.0.0"
|
|
|
|
|
|
|
|
# Enable metrics
|
|
|
|
consul_config_custom:
|
|
|
|
telemetry:
|
|
|
|
prometheus_retention_time: "2h"
|
|
|
|
|
|
|
|
become: true
|
2022-03-03 17:37:49 +00:00
|
|
|
|
2022-02-27 22:49:00 +00:00
|
|
|
tasks:
|
|
|
|
- name: Start Consul
|
|
|
|
systemd:
|
|
|
|
state: started
|
|
|
|
name: consul
|
2022-03-12 18:07:52 +00:00
|
|
|
become: true
|
2022-02-27 22:49:00 +00:00
|
|
|
|
|
|
|
- name: Add values
|
|
|
|
block:
|
2022-03-12 18:07:52 +00:00
|
|
|
- name: Install python-consul
|
2022-02-27 22:49:00 +00:00
|
|
|
pip:
|
|
|
|
name: python-consul
|
2022-03-12 18:07:52 +00:00
|
|
|
extra_args: --index-url https://pypi.org/simple
|
2022-02-27 22:49:00 +00:00
|
|
|
|
|
|
|
- name: Add a value to Consul
|
|
|
|
consul_kv:
|
2022-03-12 18:07:52 +00:00
|
|
|
host: "{{ inventory_hostname }}"
|
2022-02-27 22:49:00 +00:00
|
|
|
key: ansible_test
|
|
|
|
value: Hello from Ansible!
|
2022-03-03 17:37:49 +00:00
|
|
|
|
2022-06-17 22:19:43 +00:00
|
|
|
- name: Set hostname
|
|
|
|
consul_kv:
|
|
|
|
host: "{{ inventory_hostname }}"
|
|
|
|
key: global/base_hostname
|
|
|
|
# TODO: propogate this through via Consul and Nomad templates rather than Terraform
|
|
|
|
value: dev.homelab
|
|
|
|
|
2022-03-12 18:07:52 +00:00
|
|
|
delegate_to: localhost
|
2022-02-27 22:49:00 +00:00
|
|
|
run_once: true
|
2022-02-16 17:56:18 +00:00
|
|
|
|
2022-03-15 18:57:00 +00:00
|
|
|
- name: Setup Vault cluster
|
|
|
|
hosts: vault_instances
|
|
|
|
|
|
|
|
roles:
|
|
|
|
- name: ansible-vault
|
|
|
|
vars:
|
|
|
|
# Doesn't support multi-arch installs
|
|
|
|
vault_install_hashi_repo: true
|
|
|
|
vault_bin_path: /usr/bin
|
|
|
|
vault_harden_file_perms: true
|
|
|
|
vault_address: 0.0.0.0
|
|
|
|
|
|
|
|
vault_backend: consul
|
|
|
|
become: true
|
|
|
|
|
|
|
|
tasks:
|
2022-05-25 03:10:47 +00:00
|
|
|
- name: Get Vault status
|
|
|
|
uri:
|
|
|
|
url: http://127.0.0.1:8200/v1/sys/health
|
|
|
|
method: GET
|
|
|
|
status_code: 200, 429, 472, 473, 501, 503
|
|
|
|
body_format: json
|
|
|
|
return_content: true
|
|
|
|
run_once: true
|
|
|
|
register: vault_status
|
|
|
|
|
|
|
|
- name: Initialize Vault
|
|
|
|
when: not vault_status.json["initialized"]
|
|
|
|
block:
|
|
|
|
- name: Initialize Vault
|
|
|
|
command:
|
|
|
|
argv:
|
|
|
|
- "vault"
|
|
|
|
- "operator"
|
|
|
|
- "init"
|
|
|
|
- "-format=json"
|
|
|
|
- "-address=http://127.0.0.1:8200/"
|
|
|
|
- "-key-shares={{ vault_init_key_shares|default(3) }}"
|
|
|
|
- "-key-threshold={{ vault_init_key_threshold|default(2) }}"
|
|
|
|
run_once: true
|
|
|
|
register: vault_init
|
|
|
|
|
|
|
|
- name: Save initialize result
|
|
|
|
copy:
|
|
|
|
content: "{{ vault_init.stdout }}"
|
|
|
|
dest: "./vault-keys.json"
|
|
|
|
when: vault_init is succeeded
|
|
|
|
delegate_to: localhost
|
|
|
|
run_once: true
|
|
|
|
|
|
|
|
- name: Unseal from init
|
|
|
|
no_log: true
|
|
|
|
command:
|
|
|
|
argv:
|
|
|
|
- "vault"
|
|
|
|
- "operator"
|
|
|
|
- "unseal"
|
|
|
|
- "-address=http://127.0.0.1:8200/"
|
|
|
|
- "{{ item }}"
|
|
|
|
loop: "{{ (vault_init.stdout | from_json)['unseal_keys_hex'] }}"
|
|
|
|
when: vault_init is succeeded
|
|
|
|
|
|
|
|
- name: Unseal Vault
|
|
|
|
no_log: true
|
2022-03-15 18:57:00 +00:00
|
|
|
command:
|
|
|
|
argv:
|
|
|
|
- "vault"
|
|
|
|
- "operator"
|
|
|
|
- "unseal"
|
|
|
|
- "-address=http://127.0.0.1:8200/"
|
|
|
|
- "{{ item }}"
|
2022-05-25 03:10:47 +00:00
|
|
|
loop: "{{ unseal_keys_hex }}"
|
|
|
|
when: unseal_keys_hex is defined
|
2022-03-15 18:57:00 +00:00
|
|
|
|
2022-03-12 18:07:52 +00:00
|
|
|
# Not on Ubuntu 20.04
|
|
|
|
# - name: Install Podman
|
|
|
|
# hosts: nomad_instances
|
|
|
|
# become: true
|
|
|
|
#
|
|
|
|
# tasks:
|
|
|
|
# - name: Install Podman
|
|
|
|
# package:
|
|
|
|
# name: podman
|
|
|
|
# state: present
|
|
|
|
|
2022-04-05 05:20:19 +00:00
|
|
|
- name: Create NFS mounts
|
|
|
|
hosts: nomad_instances
|
|
|
|
become: true
|
|
|
|
|
|
|
|
tasks:
|
|
|
|
- name: Install nfs
|
|
|
|
package:
|
|
|
|
name: nfs-common
|
|
|
|
state: present
|
|
|
|
|
|
|
|
- name: Create Motioneye NFS mount
|
|
|
|
ansible.posix.mount:
|
|
|
|
src: 192.168.2.10:/Recordings/Motioneye
|
|
|
|
path: /srv/volumes/motioneye-recordings
|
|
|
|
opts: proto=tcp,port=2049,rw
|
|
|
|
state: mounted
|
|
|
|
fstype: nfs4
|
|
|
|
|
|
|
|
- name: Create Media Library RO NFS mount
|
|
|
|
ansible.posix.mount:
|
|
|
|
src: 192.168.2.10:/Multimedia
|
|
|
|
path: /srv/volumes/media-read
|
|
|
|
opts: proto=tcp,port=2049,ro
|
|
|
|
state: mounted
|
|
|
|
fstype: nfs4
|
|
|
|
|
2022-05-25 03:11:07 +00:00
|
|
|
- name: Install Docker
|
|
|
|
hosts: nomad_instances
|
|
|
|
become: true
|
|
|
|
vars:
|
|
|
|
deb_arch: "{% if ansible_architecture == 'x86_64' %}amd64{% elif ansible_architecture == 'armv7l' %}armhf{% endif %}"
|
|
|
|
docker_apt_arch: "{{ deb_arch }}"
|
|
|
|
docker_compose_arch: "{{ (ansible_architecture == 'armv7l') | ternary('armv7', ansible_architecture) }}"
|
|
|
|
roles:
|
|
|
|
- geerlingguy.docker
|
|
|
|
|
2022-02-17 22:03:42 +00:00
|
|
|
- name: Build Nomad cluster
|
2022-02-16 17:56:18 +00:00
|
|
|
hosts: nomad_instances
|
|
|
|
any_errors_fatal: true
|
|
|
|
become: true
|
|
|
|
|
2022-04-05 05:20:19 +00:00
|
|
|
vars:
|
|
|
|
shared_host_volumes:
|
|
|
|
- name: motioneye-recordings
|
|
|
|
path: /srv/volumes/motioneye-recordings
|
|
|
|
owner: "root"
|
|
|
|
group: "bin"
|
|
|
|
mode: "0755"
|
|
|
|
read_only: false
|
|
|
|
- name: media-read
|
|
|
|
path: /srv/volumes/media-read
|
|
|
|
owner: "root"
|
|
|
|
group: "root"
|
|
|
|
mode: "0777"
|
|
|
|
read_only: true
|
|
|
|
|
2022-02-16 17:56:18 +00:00
|
|
|
roles:
|
|
|
|
- name: ansible-nomad
|
2022-03-12 18:07:52 +00:00
|
|
|
vars:
|
|
|
|
nomad_version: "1.2.6"
|
|
|
|
nomad_install_remotely: true
|
|
|
|
nomad_install_upgrade: true
|
|
|
|
nomad_allow_purge_config: true
|
|
|
|
|
|
|
|
nomad_user: root
|
|
|
|
nomad_manage_user: true
|
|
|
|
nomad_group: bin
|
|
|
|
nomad_manage_group: true
|
|
|
|
|
|
|
|
# Properly map install arch
|
|
|
|
nomad_architecture_map:
|
|
|
|
x86_64: amd64
|
|
|
|
armhfv6: arm
|
|
|
|
armv7l: arm
|
|
|
|
|
2022-05-25 03:11:18 +00:00
|
|
|
nomad_autopilot: true
|
2022-03-12 18:07:52 +00:00
|
|
|
nomad_encrypt_enable: true
|
|
|
|
# nomad_use_consul: true
|
|
|
|
|
|
|
|
# Metrics
|
|
|
|
nomad_telemetry: true
|
|
|
|
nomad_telemetry_prometheus_metrics: true
|
|
|
|
nomad_telemetry_publish_allocation_metrics: true
|
|
|
|
nomad_telemetry_publish_node_metrics: true
|
|
|
|
|
|
|
|
# Enable container plugins
|
|
|
|
nomad_cni_enable: true
|
|
|
|
nomad_cni_version: 1.0.1
|
|
|
|
nomad_docker_enable: true
|
|
|
|
nomad_docker_dmsetup: false
|
|
|
|
# nomad_podman_enable: true
|
|
|
|
|
2022-04-05 05:20:19 +00:00
|
|
|
nomad_host_volumes: "{{ shared_host_volumes + (nomad_unique_host_volumes | default([])) }}"
|
|
|
|
|
2022-03-12 18:07:52 +00:00
|
|
|
# Customize docker plugin
|
|
|
|
nomad_plugins:
|
|
|
|
docker:
|
|
|
|
config:
|
2022-06-17 22:19:19 +00:00
|
|
|
allow_privileged: true
|
2022-03-12 18:07:52 +00:00
|
|
|
volumes:
|
|
|
|
enabled: true
|
|
|
|
selinuxlabel: "z"
|
|
|
|
extra_labels:
|
|
|
|
- "job_name"
|
|
|
|
- "job_id"
|
|
|
|
- "task_group_name"
|
|
|
|
- "task_name"
|
|
|
|
- "namespace"
|
|
|
|
- "node_name"
|
|
|
|
- "node_id"
|
|
|
|
|
|
|
|
# Bind nomad
|
|
|
|
nomad_bind_address: 0.0.0.0
|
|
|
|
|
2022-03-14 22:59:07 +00:00
|
|
|
# Default interface for binding tasks
|
2022-03-22 03:13:13 +00:00
|
|
|
# nomad_network_interface: lo
|
2022-03-14 22:59:07 +00:00
|
|
|
|
2022-03-12 18:07:52 +00:00
|
|
|
# Create networks for binding task ports
|
|
|
|
nomad_host_networks:
|
2022-03-22 03:13:13 +00:00
|
|
|
# - name: public
|
|
|
|
# interface: eth0
|
|
|
|
# reserved_ports: "22"
|
2022-03-12 18:07:52 +00:00
|
|
|
- name: nomad-bridge
|
|
|
|
interface: nomad
|
|
|
|
reserved_ports: "22"
|
|
|
|
- name: loopback
|
|
|
|
interface: lo
|
|
|
|
reserved_ports: "22"
|
|
|
|
|
2022-03-22 03:13:13 +00:00
|
|
|
# Enable ACLs
|
|
|
|
nomad_acl_enabled: true
|
|
|
|
|
2022-03-15 18:57:00 +00:00
|
|
|
# Enable vault integration
|
2022-05-25 03:11:41 +00:00
|
|
|
nomad_vault_enabled: "{{ root_token is defined }}"
|
|
|
|
nomad_vault_token: "{{ root_token | default('') }}"
|
2022-03-15 18:57:00 +00:00
|
|
|
|
2022-03-12 18:07:52 +00:00
|
|
|
nomad_config_custom:
|
|
|
|
ui:
|
|
|
|
enabled: true
|
|
|
|
consul:
|
|
|
|
ui_url: "http://{{ ansible_hostname }}:8500/ui"
|
2022-03-15 18:57:00 +00:00
|
|
|
vault:
|
|
|
|
ui_url: "http://{{ ansible_hostname }}:8200/ui"
|
2022-03-15 19:23:37 +00:00
|
|
|
consul:
|
2022-03-22 03:13:13 +00:00
|
|
|
tags:
|
2022-03-15 19:23:37 +00:00
|
|
|
- "traefik.enable=true"
|
|
|
|
- "traefik.consulcatalog.connect=true"
|
|
|
|
- "traefik.http.routers.nomadclient.entrypoints=websecure"
|
2022-03-03 17:37:49 +00:00
|
|
|
|
2022-02-27 22:49:00 +00:00
|
|
|
tasks:
|
|
|
|
- name: Start Nomad
|
|
|
|
systemd:
|
|
|
|
state: started
|
|
|
|
name: nomad
|
2022-03-22 04:26:04 +00:00
|
|
|
|
|
|
|
- name: Bootstrap Nomad ACLs
|
|
|
|
hosts: nomad_instances
|
|
|
|
|
|
|
|
tasks:
|
|
|
|
- name: Bootstrap ACLs
|
|
|
|
command:
|
|
|
|
argv:
|
|
|
|
- "nomad"
|
|
|
|
- "acl"
|
|
|
|
- "bootstrap"
|
|
|
|
- "-json"
|
|
|
|
run_once: true
|
|
|
|
ignore_errors: true
|
|
|
|
register: bootstrap_result
|
|
|
|
|
|
|
|
- name: Save bootstrap result
|
|
|
|
copy:
|
|
|
|
content: "{{ bootstrap_result.stdout }}"
|
|
|
|
dest: "./nomad_bootstrap.json"
|
|
|
|
when: bootstrap_result is succeeded
|
|
|
|
delegate_to: localhost
|
|
|
|
run_once: true
|
|
|
|
|
|
|
|
- name: Look for policy
|
|
|
|
command:
|
|
|
|
argv:
|
|
|
|
- nomad
|
|
|
|
- acl
|
|
|
|
- policy
|
|
|
|
- list
|
|
|
|
run_once: true
|
|
|
|
register: policies
|
|
|
|
|
|
|
|
- name: Read secret
|
|
|
|
command:
|
|
|
|
argv:
|
|
|
|
- jq
|
|
|
|
- -r
|
|
|
|
- .SecretID
|
|
|
|
- nomad_bootstrap.json
|
|
|
|
delegate_to: localhost
|
|
|
|
run_once: true
|
2022-04-15 19:12:28 +00:00
|
|
|
no_log: true
|
2022-03-22 04:26:04 +00:00
|
|
|
register: read_secretid
|
|
|
|
|
|
|
|
- name: Copy policy
|
|
|
|
copy:
|
|
|
|
src: ./acls/nomad-anon-bootstrap.hcl
|
|
|
|
dest: /tmp/anonymous.policy.hcl
|
|
|
|
delegate_to: "{{ play_hosts[0] }}"
|
|
|
|
register: anon_policy
|
|
|
|
run_once: true
|
|
|
|
|
|
|
|
- name: Create anon-policy
|
|
|
|
command:
|
|
|
|
argv:
|
|
|
|
- nomad
|
|
|
|
- acl
|
|
|
|
- policy
|
|
|
|
- apply
|
|
|
|
- -description="Anon RW"
|
|
|
|
- anonymous
|
|
|
|
- /tmp/anonymous.policy.hcl
|
|
|
|
environment:
|
|
|
|
NOMAD_TOKEN: "{{ read_secretid.stdout }}"
|
|
|
|
when: policies.stdout == "No policies found" or anon_policy.changed
|
|
|
|
delegate_to: "{{ play_hosts[0] }}"
|
|
|
|
run_once: true
|