2023-06-10 23:50:22 +00:00
|
|
|
- set_fact:
|
2024-05-25 15:12:30 +00:00
|
|
|
ceph_csi_cephfs_combined_values: "{{ ceph_csi_cephfs_default_values | combine(ceph_csi_cephfs_values | default({}), recursive=true) }}"
|
2023-06-10 23:50:22 +00:00
|
|
|
|
|
|
|
- name: Deploy CSI CephFS {{ ceph_csi_cephfs_version }}
|
|
|
|
kubernetes.core.helm:
|
|
|
|
create_namespace: true
|
|
|
|
release_namespace: "{{ ceph_csi_cephfs_namespace | default('ceph-csi-cephfs') }}"
|
|
|
|
release_name: "{{ ceph_csi_cephfs_name | default('ceph-csi-cephfs') }}"
|
|
|
|
chart_ref: "{{ ceph_csi_cephfs_chart_ref }}"
|
|
|
|
chart_version: "{{ ceph_csi_cephfs_version | default(omit) }}"
|
|
|
|
release_values: "{{ ceph_csi_cephfs_combined_values | from_yaml | default(omit) }}"
|
|
|
|
#wait: true
|