user/group mapping for nomad

This commit is contained in:
Amarpreet Minhas 2021-07-29 23:48:59 -04:00
parent 14e57e3680
commit 64e34c8b97

View file

@ -5,6 +5,7 @@
gid: "{{ item.id }}"
system: True
loop: "{{ nomad_ug_map }}"
when: nomad_ug_map is defined
- name: setup user mappings
user:
@ -12,6 +13,7 @@
uid: "{{ item.id }}"
system: True
loop: "{{ nomad_ug_map }}"
when: nomad_ug_map is defined
- name: ensure mounts
file:
@ -21,4 +23,5 @@
group: "{{ item.owner }}"
mode: 0755
loop: "{{ nomad_bind_mounts }}"
when: nomad_bind_mounts is defined
...