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:
parent
be8c669eff
commit
638a1b2eca
@ -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
|
kubernetes_flannel_manifest_file: https://raw.githubusercontent.com/flannel-io/flannel/master/Documentation/kube-flannel.yml
|
||||||
|
|
||||||
# Calico config file.
|
# 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
|
||||||
|
@ -55,7 +55,10 @@
|
|||||||
until: flannel_result.rc == 0
|
until: flannel_result.rc == 0
|
||||||
|
|
||||||
- name: Configure Calico networking.
|
- 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
|
register: calico_result
|
||||||
changed_when: "'created' in calico_result.stdout"
|
changed_when: "'created' in calico_result.stdout"
|
||||||
when: kubernetes_pod_network.cni == 'calico'
|
when: kubernetes_pod_network.cni == 'calico'
|
||||||
|
Loading…
Reference in New Issue
Block a user