57 lines
2.3 KiB
YAML
57 lines
2.3 KiB
YAML
|
---
|
||
|
- name: shinyproxy_docker_stack_service | Manage the installation of the shinyproxy configuration of the swarm service
|
||
|
tags: ['shinyproxy', 'shinyproxy_swarm', 'docker']
|
||
|
block:
|
||
|
- name: shinyproxy_docker_stack_service | Create the directory where the dockerfile and the configuration file will be copied into
|
||
|
ansible.builtin.file:
|
||
|
dest: "{{ shinyproxy_as_docker_src_dir }}"
|
||
|
state: directory
|
||
|
owner: root
|
||
|
group: root
|
||
|
mode: "0700"
|
||
|
|
||
|
- name: shinyproxy_docker_stack_service | Manage the docker stack
|
||
|
tags: ['shinyproxy', 'shinyproxy_swarm', 'docker']
|
||
|
run_once: true
|
||
|
block:
|
||
|
- name: shinyproxy_docker_stack_service | Create the directory where the dockerfile and the configuration file will be copied into
|
||
|
ansible.builtin.file:
|
||
|
dest: "{{ shinyproxy_as_docker_src_dir }}"
|
||
|
state: directory
|
||
|
owner: root
|
||
|
group: root
|
||
|
mode: "0700"
|
||
|
|
||
|
- name: shinyproxy_docker_stack_service | Install the docker compose file
|
||
|
ansible.builtin.template:
|
||
|
src: shinyproxy-docker-compose.yml.j2
|
||
|
dest: "{{ shinyproxy_as_docker_src_dir }}/docker-shinyproxy-stack.yml"
|
||
|
owner: root
|
||
|
group: root
|
||
|
mode: "0400"
|
||
|
|
||
|
- name: shinyproxy_docker_stack_service | Install the shinyproxy configuration file
|
||
|
ansible.builtin.template:
|
||
|
src: shinyproxy-2-conf.yml.j2
|
||
|
dest: "{{ shinyproxy_as_docker_src_dir }}/application.yml"
|
||
|
owner: root
|
||
|
group: root
|
||
|
mode: "0400"
|
||
|
notify: Stop the shinyproxy service
|
||
|
|
||
|
- name: shinyproxy_docker_stack_service | Flush the handlers to stop the shinyproxy service if needed
|
||
|
ansible.builtin.meta: flush_handlers
|
||
|
|
||
|
- name: shinyproxy_docker_stack_service | Create the secret for the application.yml file
|
||
|
community.docker.docker_secret:
|
||
|
name: "{{ shinyproxy_as_docker_stack_name }}_{{ shinyproxy_as_docker_service_name }}_application_yml"
|
||
|
data_src: '{{ shinyproxy_as_docker_src_dir }}/application.yml'
|
||
|
state: present
|
||
|
|
||
|
- name: shinyproxy_docker_stack_service | Start the shinyproxy stack
|
||
|
community.docker.docker_stack:
|
||
|
name: '{{ shinyproxy_as_docker_stack_name }}'
|
||
|
state: present
|
||
|
compose:
|
||
|
- '{{ shinyproxy_as_docker_src_dir }}/docker-shinyproxy-stack.yml'
|