mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-01-18 13:11:21 -03:30
According to the canal github[1] the repo is not maintained over 5 years. In addition, the README says ``` Originally, we thought we might more deeply integrate the two projects (possibly even going as far as a rebranding!). However, over time it became clear that that wasn't really necessary to fulfil our goal of making them work well together. Ultimately, we decided to focus on adding features to both projects rather than doing work just to combine them. ``` So it is difficult to support canal by Kubespray at this situation. [1]: https://github.com/projectcalico/canal
35 lines
1.2 KiB
YAML
35 lines
1.2 KiB
YAML
---
|
|
- name: Create calico-kube-controllers manifests
|
|
template:
|
|
src: "{{ item.file }}.j2"
|
|
dest: "{{ kube_config_dir }}/{{ item.file }}"
|
|
mode: 0644
|
|
with_items:
|
|
- {name: calico-kube-controllers, file: calico-kube-controllers.yml, type: deployment}
|
|
- {name: calico-kube-controllers, file: calico-kube-sa.yml, type: sa}
|
|
- {name: calico-kube-controllers, file: calico-kube-cr.yml, type: clusterrole}
|
|
- {name: calico-kube-controllers, file: calico-kube-crb.yml, type: clusterrolebinding}
|
|
register: calico_kube_manifests
|
|
when:
|
|
- inventory_hostname == groups['kube_control_plane'][0]
|
|
- rbac_enabled or item.type not in rbac_resources
|
|
|
|
- name: Start of Calico kube controllers
|
|
kube:
|
|
name: "{{ item.item.name }}"
|
|
namespace: "kube-system"
|
|
kubectl: "{{ bin_dir }}/kubectl"
|
|
resource: "{{ item.item.type }}"
|
|
filename: "{{ kube_config_dir }}/{{ item.item.file }}"
|
|
state: "latest"
|
|
with_items:
|
|
- "{{ calico_kube_manifests.results }}"
|
|
register: calico_kube_controller_start
|
|
until: calico_kube_controller_start is succeeded
|
|
retries: 4
|
|
when:
|
|
- inventory_hostname == groups['kube_control_plane'][0]
|
|
- not item is skipped
|
|
loop_control:
|
|
label: "{{ item.item.file }}"
|