summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2020-12-26 14:17:41 +0100
committerTrygve Laugstøl <trygvis@inamo.no>2020-12-26 14:17:41 +0100
commit9e4e02fdfb5a9e038c5e09a38fa51b457164156b (patch)
tree7c3f088425b3998432e70e59fa802f613f49e374
parent4083f32156c5df71cb6ea370a411e152c8a67b8b (diff)
downloadinfra-9e4e02fdfb5a9e038c5e09a38fa51b457164156b.tar.gz
infra-9e4e02fdfb5a9e038c5e09a38fa51b457164156b.tar.bz2
infra-9e4e02fdfb5a9e038c5e09a38fa51b457164156b.tar.xz
infra-9e4e02fdfb5a9e038c5e09a38fa51b457164156b.zip
Replaced malabaricus.
-rw-r--r--ansible/host_vars/malabaricus/ops-agent.yml12
-rw-r--r--ansible/inventory4
-rw-r--r--ansible/plays/files/malabaricus/etc/wireguard/public-wg0.key2
-rw-r--r--ansible/plays/malabaricus-base.yml30
-rw-r--r--ansible/plays/malabaricus-nextcloud.yml (renamed from ansible/plays/malabaricus.yml)0
-rw-r--r--ansible/plays/malabaricus-services.yml11
-rw-r--r--ansible/plays/templates/malabaricus/docker-compose.yml10
-rw-r--r--ansible/roles/docker-host/defaults/main.yml1
-rw-r--r--ansible/roles/docker-host/tasks/main.yml28
-rw-r--r--ansible/roles/unix-machine/tasks/main.yml9
10 files changed, 88 insertions, 19 deletions
diff --git a/ansible/host_vars/malabaricus/ops-agent.yml b/ansible/host_vars/malabaricus/ops-agent.yml
index 72c221b..10a55d1 100644
--- a/ansible/host_vars/malabaricus/ops-agent.yml
+++ b/ansible/host_vars/malabaricus/ops-agent.yml
@@ -15,15 +15,3 @@ telegraf_extra_config: |
file = "thermal_zone1/temp"
dest = "zone1"
conversion = "float(3)"
- [[inputs.multifile.file]]
- file = "thermal_zone2/temp"
- dest = "zone2"
- conversion = "float(3)"
- [[inputs.multifile.file]]
- file = "thermal_zone3/temp"
- dest = "zone3"
- conversion = "float(3)"
- [[inputs.multifile.file]]
- file = "thermal_zone4/temp"
- dest = "zone4"
- conversion = "float(3)"
diff --git a/ansible/inventory b/ansible/inventory
index 501477c..5b24dca 100644
--- a/ansible/inventory
+++ b/ansible/inventory
@@ -18,7 +18,9 @@ all:
homepi:
ansible_host: homepi.local
malabaricus:
- ansible_host: malabaricus.vpn.trygvis.io
+ #ansible_host: malabaricus.vpn.trygvis.io
+ ansible_host: 192.168.10.181
+ ansible_python_interpreter: /usr/bin/python3
conflatorio:
ansible_host: conflatorio.vpn.trygvis.io
ansible_python_interpreter: /usr/bin/python3
diff --git a/ansible/plays/files/malabaricus/etc/wireguard/public-wg0.key b/ansible/plays/files/malabaricus/etc/wireguard/public-wg0.key
index 6fe02dc..6104a9a 100644
--- a/ansible/plays/files/malabaricus/etc/wireguard/public-wg0.key
+++ b/ansible/plays/files/malabaricus/etc/wireguard/public-wg0.key
@@ -1 +1 @@
-spjhTSR22/RyPy7D2AnMLLzzHuasXD6W4J5Xwuo+UTQ=
+LjvdPrpPeXyj8qIYgiKkrt7A6C+VmwKgjxYmpr5Jtg0=
diff --git a/ansible/plays/malabaricus-base.yml b/ansible/plays/malabaricus-base.yml
new file mode 100644
index 0000000..e782fb2
--- /dev/null
+++ b/ansible/plays/malabaricus-base.yml
@@ -0,0 +1,30 @@
+- hosts:
+ - malabaricus
+ tasks:
+ - import_role:
+ name: unix-machine
+ - import_role:
+ name: lusers
+ - import_role:
+ name: superusers
+
+ - become: yes
+ name: /etc/hostname
+ copy:
+ dest: /etc/hostname
+ content: |
+ malabaricus
+ - become: yes
+ name: /etc/hosts
+ copy:
+ dest: /etc/hosts
+ content: |
+ 127.0.0.1 localhost malabaricus
+ ::1 localhost malabaricus ip6-localhost ip6-loopback
+ fe00::0 ip6-localnet
+ ff00::0 ip6-mcastprefix
+ ff02::1 ip6-allnodes
+ ff02::2 ip6-allrouters
+
+ - import_role:
+ name: docker-host
diff --git a/ansible/plays/malabaricus.yml b/ansible/plays/malabaricus-nextcloud.yml
index 7e54c76..7e54c76 100644
--- a/ansible/plays/malabaricus.yml
+++ b/ansible/plays/malabaricus-nextcloud.yml
diff --git a/ansible/plays/malabaricus-services.yml b/ansible/plays/malabaricus-services.yml
new file mode 100644
index 0000000..b120cf7
--- /dev/null
+++ b/ansible/plays/malabaricus-services.yml
@@ -0,0 +1,11 @@
+- hosts:
+ - malabaricus
+ tasks:
+ - import_role:
+ name: docker-host
+ - import_role:
+ name: docker-service
+ tags: docker-service
+ vars:
+ service: malabaricus
+ template: templates/malabaricus/docker-compose.yml
diff --git a/ansible/plays/templates/malabaricus/docker-compose.yml b/ansible/plays/templates/malabaricus/docker-compose.yml
new file mode 100644
index 0000000..e85f147
--- /dev/null
+++ b/ansible/plays/templates/malabaricus/docker-compose.yml
@@ -0,0 +1,10 @@
+version: "3"
+services:
+ pdb11:
+ image: postgres:11
+ volumes:
+ - /data:/var/lib/postgresql/data
+ environment:
+ POSTGRES_PASSWORD: mysecretpassword
+
+
diff --git a/ansible/roles/docker-host/defaults/main.yml b/ansible/roles/docker-host/defaults/main.yml
new file mode 100644
index 0000000..64fc11d
--- /dev/null
+++ b/ansible/roles/docker-host/defaults/main.yml
@@ -0,0 +1 @@
+docker_host__credentials: []
diff --git a/ansible/roles/docker-host/tasks/main.yml b/ansible/roles/docker-host/tasks/main.yml
new file mode 100644
index 0000000..715a917
--- /dev/null
+++ b/ansible/roles/docker-host/tasks/main.yml
@@ -0,0 +1,28 @@
+- become: yes
+ tags: never,packages
+ apt:
+ name:
+ - docker.io
+ - docker-compose
+ - gnupg2
+ - pass
+ install_recommends: no
+
+- name: Logging in to docker registries
+ loop: "{{ docker_host__credentials }}"
+ become: yes
+ command:
+ cmd: docker login -u "{{ item.username }}" --password-stdin "{{ item.registry }}"
+ stdin: "{{ item.password }}"
+ no_log: yes
+
+- name: Create /etc/docker/daemon.json
+ when: docker_host__daemon_json_content|default("")|length > 0
+ become: yes
+ register: docker_json
+ copy:
+ dest: /etc/docker/daemon.json
+ content: "{{ docker_host__daemon_json_content }}"
+
+- debug: msg="docker.json changed, you must manually restart docker."
+ when: docker_json.changed
diff --git a/ansible/roles/unix-machine/tasks/main.yml b/ansible/roles/unix-machine/tasks/main.yml
index 9e3464f..82d835d 100644
--- a/ansible/roles/unix-machine/tasks/main.yml
+++ b/ansible/roles/unix-machine/tasks/main.yml
@@ -1,5 +1,5 @@
- name: /etc/apt/apt.conf.d/99force-ipv4
- copy:
+ file:
dest: /etc/apt/apt.conf.d/99force-ipv4
state: absent
@@ -9,11 +9,10 @@
- name: packages (early)
tags: packages
apt:
- name: "{{ item }}"
+ name:
+ - git
+ - etckeeper
install_recommends: no
- with_items:
- - git
- - etckeeper
- name: packages
tags: packages