Adding a task to update hydra-dispatcher only

We may want to restart this service only.
This commit is contained in:
Laurent Gourvenec 2023-08-07 18:02:59 +02:00
parent a9e6253449
commit 7c745e2cf9
1 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,25 @@
---
# Simple task to update the package/container cadoles-pod-hydra-dispatcher only.
- name: Install hydra-dispatcher package
ansible.builtin.apt:
name:
- cadoles-pod-hydra-dispatcher-v1={{ cadoles_pod_hydra_dispatcher_v1_package_version }}
update_cache: yes
state: present
become: true
- name: Configure cadoles-pod-hydra-dispatcher-v1
template:
src: "{{ item.src }}"
dest: "{{ item.dest }}"
mode: "{{ item.mode }}"
with_items:
- src: cadoles-pod-hydra-dispatcher-v1.conf.j2
dest: /etc/cadoles-pod-hydra-dispatcher-v1.conf
mode: u=rw,g=r
- src: hydra-dispatcher-apps.yml.j2
dest: /etc/hydra-dispatcher/conf.d/apps.yml
mode: u=rw,g=r,o=r
notify:
- Restart cadoles-pod-hydra-dispatcher-v1
become: true