ansible-libvirtsecret/tasks/main.yml

27 lines
751 B
YAML
Raw Normal View History

2020-07-30 07:43:29 +00:00
- name: Check if libvirt RBD secret set
2020-08-20 09:08:36 +00:00
command: virsh secret-get-value {{ rbd_secret_uuid }}
2020-07-30 07:43:29 +00:00
register: virsh_secret_result
changed_when: false
failed_when: false
tags: libvirt-secret
- name: Generate libvirt RBD secret definition
template:
src: templates/rbd_secret.xml.j2
dest: /tmp/secret.xml
# when: virsh_secret_result.rc != 0
ignore_errors: yes
tags: libvirt-secret
- name: Define libvirt RBD secret
command: virsh secret-define /tmp/secret.xml
# when: virsh_secret_result.rc != 0
ignore_errors: yes
tags: libvirt-secret
- name: Set libvirt RBD secret
2020-08-20 09:08:36 +00:00
command: virsh secret-set-value {{ rbd_secret_uuid }} {{ rbd_secret_key }}
2020-07-30 07:43:29 +00:00
# when: virsh_secret_result.rc != 0
ignore_errors: yes
tags: libvirt-secret