f80fd24a55
When running ansible-lint directly, we can see a lot of warning message like risky-file-permissions File permissions unset or incorrect This fixes the warning messages.
18 lines
587 B
YAML
18 lines
587 B
YAML
---
|
|
- 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"
|
|
mode: 0644
|
|
register: manifests
|
|
when:
|
|
- inventory_hostname == groups['kube_control_plane'][0]
|
|
|
|
- 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:
|
|
- inventory_hostname == groups['kube_control_plane'][0]
|
|
- manifests.changed
|