1
0
mirror of https://github.com/geerlingguy/ansible-role-kubernetes.git synced 2025-04-02 01:20:57 +02:00

updated calico installation

This commit is contained in:
iLem0n 2023-05-13 20:34:24 +02:00
parent be8c669eff
commit 638a1b2eca
2 changed files with 6 additions and 2 deletions

View File

@ -69,4 +69,5 @@ kubernetes_yum_repo_gpg_check: true
kubernetes_flannel_manifest_file: https://raw.githubusercontent.com/flannel-io/flannel/master/Documentation/kube-flannel.yml
# Calico config file.
kubernetes_calico_manifest_file: https://projectcalico.docs.tigera.io/manifests/calico.yaml
kubernetes_calico_manifest_file: https://raw.githubusercontent.com/projectcalico/calico/v3.25.1/manifests/tigera-operator.yaml
kubernetes_calico_manifest_file_crd: https://raw.githubusercontent.com/projectcalico/calico/v3.25.1/manifests/custom-resources.yaml

View File

@ -55,7 +55,10 @@
until: flannel_result.rc == 0
- name: Configure Calico networking.
command: "kubectl apply -f {{ kubernetes_calico_manifest_file }}"
command: "{{ item }}"
with_items:
- "kubectl create -f {{ kubernetes_calico_manifest_file }}"
- "kubectl create -f {{ kubernetes_calico_manifest_file_crd }}"
register: calico_result
changed_when: "'created' in calico_result.stdout"
when: kubernetes_pod_network.cni == 'calico'