about summary refs log tree commit diff
path: root/ansible
diff options
context:
space:
mode:
authormakefunstuff <[email protected]>2024-07-18 21:32:36 +0200
committermakefunstuff <[email protected]>2024-07-18 21:32:36 +0200
commit806607a58675a3f28694602b16762f9cdd5dac60 (patch)
treea0fc3b03159e608e115de68785192d2c54480d28 /ansible
parent07822ea3f2239cf9cd3335ad2d7fb0aab7a3e1dc (diff)
downloadk3s-lab-806607a58675a3f28694602b16762f9cdd5dac60.tar.gz
ansible
Diffstat (limited to 'ansible')
-rw-r--r--ansible/playbook.yaml10
-rw-r--r--ansible/roles/caddy/files/Caddyfile7
-rw-r--r--ansible/roles/caddy/handlers/main.yml6
-rw-r--r--ansible/roles/caddy/tasks/main.yml15
-rw-r--r--ansible/roles/common/tasks/main.yml11
-rw-r--r--ansible/roles/docker-compose/tasks/main.yaml6
-rw-r--r--ansible/roles/docker/tasks/main.yml22
-rw-r--r--ansible/roles/sourcehut/tasks/main.yml33
8 files changed, 110 insertions, 0 deletions
diff --git a/ansible/playbook.yaml b/ansible/playbook.yaml
new file mode 100644
index 0000000..7f760b2
--- /dev/null
+++ b/ansible/playbook.yaml
@@ -0,0 +1,10 @@
+---
+- hosts: all
+  become: true
+  roles:
+    - common
+    - docker
+    - docker-compose
+    - caddy
+    - sourcehut
+    - soft-serve
diff --git a/ansible/roles/caddy/files/Caddyfile b/ansible/roles/caddy/files/Caddyfile
new file mode 100644
index 0000000..837efa5
--- /dev/null
+++ b/ansible/roles/caddy/files/Caddyfile
@@ -0,0 +1,7 @@
+sourcehut.example.com {
+  reverse_proxy localhost:8000
+}
+git.example.com {
+  reverse_proxy localhost:2222
+}
+
diff --git a/ansible/roles/caddy/handlers/main.yml b/ansible/roles/caddy/handlers/main.yml
new file mode 100644
index 0000000..f265424
--- /dev/null
+++ b/ansible/roles/caddy/handlers/main.yml
@@ -0,0 +1,6 @@
+---
+- name: Reload Caddy
+  systemd:
+    name: caddy
+    state: reloaded
+
diff --git a/ansible/roles/caddy/tasks/main.yml b/ansible/roles/caddy/tasks/main.yml
new file mode 100644
index 0000000..5caaa18
--- /dev/null
+++ b/ansible/roles/caddy/tasks/main.yml
@@ -0,0 +1,15 @@
+---
+- name: Install Caddy
+  shell: |
+    apt install -y debian-keyring debian-archive-keyring apt-transport-https
+    curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/gpg.key' | apt-key add -
+    curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/debian.deb.txt' | tee /etc/apt/sources.list.d/caddy-stable.list
+    apt update
+    apt install caddy
+
+- name: Setup Caddy for SourceHut and Soft-Serve
+  copy:
+    src: Caddyfile
+    dest: /etc/caddy/Caddyfile
+  notify: Reload Caddy
+
diff --git a/ansible/roles/common/tasks/main.yml b/ansible/roles/common/tasks/main.yml
new file mode 100644
index 0000000..986f438
--- /dev/null
+++ b/ansible/roles/common/tasks/main.yml
@@ -0,0 +1,11 @@
+---
+- name: Install dependencies
+  apt:
+    name:
+      - apt-transport-https
+      - ca-certificates
+      - curl
+      - software-properties-common
+      - git
+    state: present
+    update_cache: yes
diff --git a/ansible/roles/docker-compose/tasks/main.yaml b/ansible/roles/docker-compose/tasks/main.yaml
new file mode 100644
index 0000000..6386f2d
--- /dev/null
+++ b/ansible/roles/docker-compose/tasks/main.yaml
@@ -0,0 +1,6 @@
+---
+- name: Install Docker Compose
+  get_url:
+    url: https://github.com/docker/compose/releases/download/1.29.2/docker-compose-`uname -s`-`uname -m`
+    dest: /usr/local/bin/docker-compose
+    mode: '0755'
diff --git a/ansible/roles/docker/tasks/main.yml b/ansible/roles/docker/tasks/main.yml
new file mode 100644
index 0000000..38ad4dd
--- /dev/null
+++ b/ansible/roles/docker/tasks/main.yml
@@ -0,0 +1,22 @@
+---
+- name: Add Docker GPG key
+  apt_key:
+    url: https://download.docker.com/linux/ubuntu/gpg
+    state: present
+
+- name: Add Docker repository
+  apt_repository:
+    repo: deb [arch=amd64] https://download.docker.com/linux/ubuntu focal stable
+    state: present
+
+- name: Install Docker
+  apt:
+    name: docker-ce
+    state: present
+    update_cache: yes
+
+- name: Start and enable Docker service
+  systemd:
+    name: docker
+    state: started
+    enabled: true
diff --git a/ansible/roles/sourcehut/tasks/main.yml b/ansible/roles/sourcehut/tasks/main.yml
new file mode 100644
index 0000000..047ac06
--- /dev/null
+++ b/ansible/roles/sourcehut/tasks/main.yml
@@ -0,0 +1,33 @@
+---
+- name: Clone SourceHut repositories
+  git:
+    repo: '{{ item }}'
+    dest: '/opt/sourcehut/{{ item | basename }}'
+  with_items:
+    - https://git.sr.ht/~sircmpwn/builds.sr.ht
+    - https://git.sr.ht/~sircmpwn/dispatch.sr.ht
+    - https://git.sr.ht/~sircmpwn/git.sr.ht
+    - https://git.sr.ht/~sircmpwn/hg.sr.ht
+    - https://git.sr.ht/~sircmpwn/lists.sr.ht
+    - https://git.sr.ht/~sircmpwn/meta.sr.ht
+    - https://git.sr.ht/~sircmpwn/mle.sr.ht
+    - https://git.sr.ht/~sircmpwn/patches.sr.ht
+    - https://git.sr.ht/~sircmpwn/paste.sr.ht
+    - https://git.sr.ht/~sircmpwn/todo.sr.ht
+
+- name: Configure SourceHut services
+  shell: |
+    cd /opt/sourcehut/{{ item | basename }}
+    docker-compose up -d
+  with_items:
+    - https://git.sr.ht/~sircmpwn/builds.sr.ht
+    - https://git.sr.ht/~sircmpwn/dispatch.sr.ht
+    - https://git.sr.ht/~sircmpwn/git.sr.ht
+    - https://git.sr.ht/~sircmpwn/hg.sr.ht
+    - https://git.sr.ht/~sircmpwn/lists.sr.ht
+    - https://git.sr.ht/~sircmpwn/meta.sr.ht
+    - https://git.sr.ht/~sircmpwn/mle.sr.ht
+    - https://git.sr.ht/~sircmpwn/patches.sr.ht
+    - https://git.sr.ht/~sircmpwn/paste.sr.ht
+    - https://git.sr.ht/~sircmpwn/todo.sr.ht
+