2020-09-03 11:01:43 +00:00
|
|
|
---
|
|
|
|
- name: Kubernetes Snapshots | Copy Cinder CSI Snapshot Class template
|
|
|
|
template:
|
|
|
|
src: "cinder-csi-snapshot-class.yml.j2"
|
|
|
|
dest: "{{ kube_config_dir }}/cinder-csi-snapshot-class.yml"
|
2022-01-09 09:51:12 +00:00
|
|
|
mode: 0644
|
2020-09-03 11:01:43 +00:00
|
|
|
register: manifests
|
|
|
|
when:
|
2021-03-24 00:26:05 +00:00
|
|
|
- inventory_hostname == groups['kube_control_plane'][0]
|
2020-09-03 11:01:43 +00:00
|
|
|
|
|
|
|
- name: Kubernetes Snapshots | Add Cinder CSI Snapshot Class
|
|
|
|
kube:
|
|
|
|
kubectl: "{{ bin_dir }}/kubectl"
|
|
|
|
filename: "{{ kube_config_dir }}/cinder-csi-snapshot-class.yml"
|
|
|
|
state: "latest"
|
|
|
|
when:
|
2021-03-24 00:26:05 +00:00
|
|
|
- inventory_hostname == groups['kube_control_plane'][0]
|
2020-09-03 11:01:43 +00:00
|
|
|
- manifests.changed
|