Add very basic deployment service based on webhook

This commit is contained in:
Tobias Reisinger 2025-05-25 16:11:05 +02:00
parent a70ea6ef2a
commit 5d22308f0f
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
5 changed files with 92 additions and 0 deletions

View file

@ -0,0 +1,37 @@
---
- name: Set common facts
ansible.builtin.import_tasks: tasks/set-default-facts.yml
- name: Deploy {{ role_name }}
vars:
svc: "{{ deploy_svc }}"
yml: "{{ deploy_yml }}"
compose: "{{ deploy_compose }}"
block:
- name: Import prepare tasks for common service
ansible.builtin.import_tasks: tasks/prepare-common-service.yml
- name: Set webhook config path
ansible.builtin.set_fact:
config_path: "{{ (service_path, 'config') | path_join }}"
- name: Create config directory
ansible.builtin.file:
path: "{{ config_path }}"
state: directory
mode: "0755"
- name: Template main config
ansible.builtin.template:
src: yml.j2
dest: "{{ (config_path, 'hooks.yml') | path_join }}"
mode: "0644"
- name: Copy the deploy-reitanlage_oranienburg script
ansible.builtin.copy:
src: deploy-reitanlage_oranienburg
dest: "{{ (config_path, 'deploy-reitanlage_oranienburg') | path_join }}"
mode: "0755"
- name: Import start tasks for common service
ansible.builtin.import_tasks: tasks/start-common-service.yml