We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86ae309 commit d7efaf6Copy full SHA for d7efaf6
ansible/roles/compute_init/files/compute-init.yml
@@ -299,7 +299,9 @@
299
# if not the case
300
- name: Write Munge key
301
copy:
302
- content: "{{ openhpc_munge_key }}"
+ # NB: openhpc_munge_key is *binary* and may not survive json encoding
303
+ # so do same as environments/common/inventory/group_vars/all/openhpc.yml
304
+ content: "{{ vault_openhpc_mungekey | b64decode }}"
305
dest: "/etc/munge/munge.key"
306
owner: munge
307
group: munge
0 commit comments