WIP: feat(sharkey): add ansible role for deployment

This commit is contained in:
2025-06-27 23:25:43 +02:00
parent cce1ed58d4
commit 6b1c51b7f6
14 changed files with 106 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
---
- name: Ensure 'sharkey_state' is valid
ansible.builtin.fail:
msg: >-2
Unsupported sharkey_state '{{ sharkey_state }}'.
Supported values are {{ sharkey_states | join(', ') }}
when: sharkey_state not in sharkey_states
- name: Ensure 'sharkey_deployment_method' is valid
ansible.builtin.fail:
msg: >-2
Unsupported sharkey_deployment_method '{{ sharkey_deployment_method }}.
Supported values are {{ sharkey_deployment_methods | join(', ') }}
when: sharkey_deployment_method not in sharkey_deployment_methods

View File

@@ -0,0 +1,7 @@
---
- name: Ensure compose files are downloaded
ansible.builtin.get_url:
# TODO: how to avoid redownloading default.yml when the role made changes?
url: "{{ sharkey_compose_file_url }}"
dest: "{{ sharkey_compose_upstream_file }}"

View File

@@ -0,0 +1,10 @@
---
- name: Ensure sharkey user '{{ sharkey_user }}' is {{ sharkey_state }}
ansible.builtin.user:
name: "{{ sharkey_user }}"
state: "{{ sharkey_state }}"
system: "{{ sharkey_user_system }}"
create_home: "{{ sharkey_user_create_home }}"
groups: "{{ sharkey_user_groups }}"
append: "{{ sharkey_user_append_groups }}"
register: sharkey_user_info

View File

@@ -0,0 +1,7 @@
---
- name: Ensure docker compose project is {{ sharkey_compose_state }}
community.docker.docker_compose_v2:
project_name: "{{ sharkey_compose_project_name }}"
project_src: "{{ sharkey_compose_project_src }}"
state: "{{ sharkey_compose_state }}"
build: "{{ sharkey_compose_build }}"

View File

@@ -0,0 +1,12 @@
---
- name: Check role prerequisites
ansible.builtin.include_tasks:
file: check.yml
- name: Run common configuration tasks
ansible.builtin.include_tasks:
file: configure.yml
- name: Deploy using {{ sharkey_deployment_method }}
ansible.builtin.include_tasks:
file: "deploy-{{ sharkey_deployment_method }}.yml"