aboutsummaryrefslogtreecommitdiff
path: root/ansible/roles/gitea/tasks/deploy_gitea.yml
diff options
context:
space:
mode:
Diffstat (limited to 'ansible/roles/gitea/tasks/deploy_gitea.yml')
-rw-r--r--ansible/roles/gitea/tasks/deploy_gitea.yml38
1 files changed, 38 insertions, 0 deletions
diff --git a/ansible/roles/gitea/tasks/deploy_gitea.yml b/ansible/roles/gitea/tasks/deploy_gitea.yml
new file mode 100644
index 0000000..4390689
--- /dev/null
+++ b/ansible/roles/gitea/tasks/deploy_gitea.yml
@@ -0,0 +1,38 @@
+---
+- name: Gather the package facts
+ ansible.builtin.package_facts:
+ manager: auto
+
+- name: Verify Docker and compose are available
+ ansible.builtin.assert:
+ that:
+ - "'docker-ce' in ansible_facts.packages"
+ - "'docker-compose-plugin' in ansible_facts.packages"
+ fail_msg: "Docker and compose plugin are not installed"
+
+- name: Create Gitea directories
+ ansible.builtin.file:
+ path: "{{ gitea_root_dir }}"
+ state: directory
+ mode: '0755'
+
+- name: Deploy Gitea stack using compose v2
+ community.docker.docker_compose_v2:
+ project_src: "{{ playbook_dir }}/../../docker/compose/gitea"
+ state: present
+ pull: "policy"
+ recreate: always
+
+- name: Verify that gitea and db services are running
+ ansible.builtin.assert:
+ that:
+ - gitea_container.State == 'running'
+ - db_container.State == 'running'
+ vars:
+ gitea_container: >-
+ {{ output.containers | selectattr("Service", "equalto", "gitea") | first }}
+ db_container: >-
+ {{ output.containers | selectattr("Service", "equalto", "db") | first }}
+
+
+...