Add gethomepage as dashboard
This commit is contained in:
parent
2a86c1bd88
commit
ad52cec21e
4 changed files with 208 additions and 0 deletions
69
roles/gethomepage/tasks/main.yml
Normal file
69
roles/gethomepage/tasks/main.yml
Normal file
|
@ -0,0 +1,69 @@
|
|||
---
|
||||
- name: Set common facts
|
||||
ansible.builtin.import_tasks: tasks/set-default-facts.yml
|
||||
|
||||
- name: Deploy {{ svc.name }}
|
||||
vars:
|
||||
svc: "{{ gethomepage_svc }}"
|
||||
compose: "{{ gethomepage_compose }}"
|
||||
block:
|
||||
- name: Import prepare tasks for common service
|
||||
ansible.builtin.import_tasks: tasks/prepare-common-service.yml
|
||||
|
||||
- name: Set 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 settings
|
||||
ansible.builtin.template:
|
||||
src: yml.j2
|
||||
dest: "{{ (config_path, 'settings.yaml') | path_join }}"
|
||||
mode: "0644"
|
||||
vars:
|
||||
yml: "{{ gethomepage_settings_yml }}"
|
||||
register: cmd_result_settings
|
||||
|
||||
- name: Template services
|
||||
ansible.builtin.template:
|
||||
src: yml.j2
|
||||
dest: "{{ (config_path, 'services.yaml') | path_join }}"
|
||||
mode: "0644"
|
||||
vars:
|
||||
yml: "{{ gethomepage_services_yml }}"
|
||||
register: cmd_result_services
|
||||
|
||||
- name: Template booksmarks
|
||||
ansible.builtin.template:
|
||||
src: yml.j2
|
||||
dest: "{{ (config_path, 'booksmarks.yaml') | path_join }}"
|
||||
mode: "0644"
|
||||
vars:
|
||||
yml: "{{ gethomepage_bookmarks_yml }}"
|
||||
register: cmd_result_booksmarks
|
||||
|
||||
- name: Template widgets
|
||||
ansible.builtin.template:
|
||||
src: yml.j2
|
||||
dest: "{{ (config_path, 'widgets.yaml') | path_join }}"
|
||||
mode: "0644"
|
||||
vars:
|
||||
yml: "{{ gethomepage_widgets_yml }}"
|
||||
register: cmd_result_widgets
|
||||
|
||||
- name: Set the docker force-recreate flag
|
||||
ansible.builtin.set_fact:
|
||||
docker_force_recreate: --force-recreate
|
||||
when: | # noqa: no-handler We need to handle the restart per service. Handlers don't support variables.
|
||||
cmd_result_settings.changed
|
||||
or cmd_result_services.changed
|
||||
or cmd_result_booksmarks.changed
|
||||
or cmd_result_widgets.changed
|
||||
|
||||
- name: Import start tasks for common service
|
||||
ansible.builtin.import_tasks: tasks/start-common-service.yml
|
Reference in a new issue