2022-02-16 17:56:18 +00:00
|
|
|
---
|
|
|
|
- name: Build Consul cluster
|
|
|
|
hosts: consul_instances
|
|
|
|
any_errors_fatal: true
|
|
|
|
|
2022-07-22 02:04:44 +00:00
|
|
|
vars_files:
|
|
|
|
- consul_values.yml
|
|
|
|
|
2022-02-16 17:56:18 +00:00
|
|
|
roles:
|
2022-03-12 18:07:52 +00:00
|
|
|
- role: ansible-consul
|
|
|
|
vars:
|
2022-07-22 02:04:44 +00:00
|
|
|
consul_version: "1.12.3-1"
|
2022-03-12 18:07:52 +00:00
|
|
|
consul_install_upgrade: true
|
2022-06-24 03:11:48 +00:00
|
|
|
consul_install_from_repo: true
|
|
|
|
consul_os_repo_prerequisites: []
|
2022-03-12 18:07:52 +00:00
|
|
|
|
|
|
|
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"
|
|
|
|
|
2022-06-24 03:12:09 +00:00
|
|
|
# DNS forwarding
|
|
|
|
consul_dnsmasq_enable: true
|
|
|
|
consul_dnsmasq_servers:
|
|
|
|
# TODO: use addresses of other nomad nodes?
|
|
|
|
# Maybe this can be [] to get the values from dhcp
|
|
|
|
- 1.1.1.1
|
|
|
|
- 1.0.0.1
|
|
|
|
consul_dnsmasq_bind_interfaces: true
|
|
|
|
consul_dnsmasq_listen_addresses:
|
|
|
|
# Listen only to loopback interface
|
|
|
|
- 127.0.0.1
|
|
|
|
|
2022-03-12 18:07:52 +00:00
|
|
|
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
|
|
|
|
2022-06-24 03:12:09 +00:00
|
|
|
# If DNS is broken after dnsmasq, then need to set /etc/resolv.conf to something
|
|
|
|
# pointing to 127.0.0.1 and possibly restart Docker and Nomad
|
|
|
|
|
2022-02-27 22:49:00 +00:00
|
|
|
- name: Add values
|
2022-06-28 19:08:23 +00:00
|
|
|
delegate_to: localhost
|
|
|
|
run_once: true
|
2022-02-27 22:49:00 +00:00
|
|
|
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
|
|
|
|
2022-07-22 03:15:11 +00:00
|
|
|
- name: Write values
|
|
|
|
consul_kv:
|
|
|
|
host: "{{ inventory_hostname }}"
|
|
|
|
key: "{{ item.key }}"
|
|
|
|
value: "{{ item.value }}"
|
|
|
|
loop: "{{ consul_values | default({}) | dict2items }}"
|
|
|
|
|
2022-03-15 18:57:00 +00:00
|
|
|
- name: Setup Vault cluster
|
|
|
|
hosts: vault_instances
|
|
|
|
|
2022-06-28 19:09:07 +00:00
|
|
|
vars_files:
|
|
|
|
- ./vault_hashi_vault_values.yml
|
|
|
|
|
2022-03-15 18:57:00 +00:00
|
|
|
roles:
|
|
|
|
- name: ansible-vault
|
|
|
|
vars:
|
2022-07-22 02:04:44 +00:00
|
|
|
vault_version: 1.10.0
|
2022-03-15 18:57:00 +00:00
|
|
|
vault_install_hashi_repo: true
|
|
|
|
vault_harden_file_perms: true
|
2022-07-22 02:04:44 +00:00
|
|
|
vault_bin_path: /usr/bin
|
2022-03-15 18:57:00 +00:00
|
|
|
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 }}"
|
2022-06-28 19:10:18 +00:00
|
|
|
when:
|
|
|
|
- unseal_keys_hex is defined
|
|
|
|
- vault_status.json["sealed"]
|
2022-03-15 18:57:00 +00:00
|
|
|
|
2022-06-28 19:09:07 +00:00
|
|
|
- name: Bootstrap Vault secrets
|
|
|
|
delegate_to: localhost
|
|
|
|
run_once: true
|
|
|
|
block:
|
|
|
|
- name: Install hvac
|
|
|
|
pip:
|
|
|
|
name: hvac
|
|
|
|
extra_args: --index-url https://pypi.org/simple
|
|
|
|
|
2022-07-25 17:51:34 +00:00
|
|
|
# TODO: This fails on first run because `root_token` isn't found
|
|
|
|
# Fails after taht too because the kv/ space has not been created yet either! Oh noes!
|
|
|
|
# Maybe move data bootstrapping to after the cluster is bootstrapped
|
2022-06-28 19:09:07 +00:00
|
|
|
- name: Write values
|
2022-07-27 18:11:03 +00:00
|
|
|
no_log: true
|
2022-06-28 19:09:07 +00:00
|
|
|
community.hashi_vault.vault_write:
|
|
|
|
url: "http://{{ inventory_hostname }}:8200"
|
|
|
|
token: "{{ root_token }}"
|
|
|
|
path: "kv/data/{{ item.key }}"
|
|
|
|
data:
|
|
|
|
data:
|
|
|
|
"{{ item.value }}"
|
|
|
|
loop: "{{ hashi_vault_values | default({}) | dict2items }}"
|
|
|
|
|
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-06-23 16:49:57 +00:00
|
|
|
- name: all-volumes
|
|
|
|
path: /srv/volumes
|
|
|
|
owner: "root"
|
|
|
|
group: "root"
|
|
|
|
mode: "0777"
|
|
|
|
read_only: false
|
2022-04-05 05:20:19 +00:00
|
|
|
|
2022-02-16 17:56:18 +00:00
|
|
|
roles:
|
|
|
|
- name: ansible-nomad
|
2022-03-12 18:07:52 +00:00
|
|
|
vars:
|
2022-07-22 02:04:44 +00:00
|
|
|
nomad_version: "1.3.2-1"
|
2022-03-12 18:07:52 +00:00
|
|
|
nomad_install_remotely: true
|
|
|
|
nomad_install_upgrade: true
|
|
|
|
nomad_allow_purge_config: true
|
|
|
|
|
2022-07-22 02:04:44 +00:00
|
|
|
# Where nomad gets installed to
|
|
|
|
nomad_bin_dir: /usr/bin
|
|
|
|
nomad_install_from_repo: true
|
2022-06-23 16:51:21 +00:00
|
|
|
|
2022-07-22 02:04:44 +00:00
|
|
|
# nomad_user: root
|
|
|
|
# nomad_manage_user: true
|
|
|
|
# nomad_group: bin
|
|
|
|
# nomad_manage_group: true
|
2022-03-12 18:07:52 +00:00
|
|
|
|
|
|
|
# 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-07-22 02:04:44 +00:00
|
|
|
# Merge shared host volumes with node volumes
|
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-07-25 17:51:34 +00:00
|
|
|
# TODO: This fails on first run because the Nomad-Vault integration can't be set up
|
|
|
|
# until Nomad has started. Could maybe figure out if ACLs have been set up and leave
|
2022-07-27 20:40:21 +00:00
|
|
|
# these out until the later play, maybe just bootstrap the nomad-cluster role in Vault
|
|
|
|
# befor Nomad is set up
|
2022-06-28 19:10:18 +00:00
|
|
|
nomad_vault_address: "http://vault.service.consul:8200"
|
|
|
|
nomad_vault_create_from_role: "nomad-cluster"
|
2022-07-27 20:40:21 +00:00
|
|
|
# TODO: Probably want to restict this to a narrower scoped token
|
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:
|
2022-07-25 17:51:34 +00:00
|
|
|
# Need to wait until nomad is running
|
2022-03-22 04:26:04 +00:00
|
|
|
- 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-06-28 19:10:18 +00:00
|
|
|
changed_when: false
|
2022-03-22 04:26:04 +00:00
|
|
|
register: read_secretid
|
|
|
|
|
|
|
|
- name: Copy policy
|
|
|
|
copy:
|
2022-08-23 17:31:03 +00:00
|
|
|
src: ./acls/nomad-anon-policy.hcl
|
2022-03-22 04:26:04 +00:00
|
|
|
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
|
2022-08-23 17:31:03 +00:00
|
|
|
- -description="Anon read only"
|
2022-03-22 04:26:04 +00:00
|
|
|
- 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
|
2022-07-25 17:51:34 +00:00
|
|
|
|
|
|
|
- name: Set up Nomad backend and roles in Vault
|
|
|
|
community.general.terraform:
|
|
|
|
project_path: ./acls
|
|
|
|
force_init: true
|
|
|
|
variables:
|
|
|
|
consul_address: "{{ play_hosts[0] }}:8500"
|
|
|
|
vault_token: "{{ root_token }}"
|
|
|
|
nomad_secret_id: "{{ read_secretid.stdout }}"
|
|
|
|
delegate_to: localhost
|
|
|
|
run_once: true
|