2020-09-03 19:01:43 +08:00
|
|
|
---
|
2022-06-20 15:34:31 +08:00
|
|
|
- name: check if snapshot namespace exists
|
|
|
|
register: snapshot_namespace_exists
|
|
|
|
kube:
|
|
|
|
kubectl: "{{ bin_dir }}/kubectl"
|
|
|
|
name: "{{ snapshot_controller_namespace }}"
|
|
|
|
resource: "namespace"
|
|
|
|
state: "exists"
|
|
|
|
when: inventory_hostname == groups['kube_control_plane'][0]
|
|
|
|
tags: snapshot-controller
|
|
|
|
|
2020-09-03 19:01:43 +08:00
|
|
|
- name: Snapshot Controller | Generate Manifests
|
|
|
|
template:
|
|
|
|
src: "{{ item.file }}.j2"
|
|
|
|
dest: "{{ kube_config_dir }}/{{ item.file }}"
|
2022-01-09 17:51:12 +08:00
|
|
|
mode: 0644
|
2020-09-03 19:01:43 +08:00
|
|
|
with_items:
|
2022-06-20 15:34:31 +08:00
|
|
|
- {name: snapshot-ns, file: snapshot-ns.yml, apply: not snapshot_namespace_exists}
|
2020-09-03 19:01:43 +08:00
|
|
|
- {name: rbac-snapshot-controller, file: rbac-snapshot-controller.yml}
|
|
|
|
- {name: snapshot-controller, file: snapshot-controller.yml}
|
|
|
|
register: snapshot_controller_manifests
|
2022-06-20 15:34:31 +08:00
|
|
|
when:
|
|
|
|
- inventory_hostname == groups['kube_control_plane'][0]
|
|
|
|
- item.apply | default(True) | bool
|
2020-09-03 19:01:43 +08:00
|
|
|
tags: snapshot-controller
|
|
|
|
|
|
|
|
- name: Snapshot Controller | Apply Manifests
|
|
|
|
kube:
|
|
|
|
kubectl: "{{ bin_dir }}/kubectl"
|
|
|
|
filename: "{{ kube_config_dir }}/{{ item.item.file }}"
|
|
|
|
state: "latest"
|
|
|
|
with_items:
|
|
|
|
- "{{ snapshot_controller_manifests.results }}"
|
|
|
|
when:
|
2021-03-24 08:26:05 +08:00
|
|
|
- inventory_hostname == groups['kube_control_plane'][0]
|
2020-09-03 19:01:43 +08:00
|
|
|
- not item is skipped
|
|
|
|
loop_control:
|
|
|
|
label: "{{ item.item.file }}"
|
|
|
|
tags: snapshot-controller
|