From a8d3d51ffaa4c6e7534209287fa200fa088c70a2 Mon Sep 17 00:00:00 2001 From: Nathan Brown Date: Tue, 14 Feb 2023 17:04:28 -0600 Subject: [PATCH] cluster: update Calico manifests URL Calico recently changed the location of their manifests for quickstart installation. The old URLs are no longer active. Update the URLs to use the correct location to install Calico. Signed-off-by: Nathan Brown Reviewed-by: Trevor Tao Reviewed-by: Lijian Zhang Change-Id: Ic0cd81214d09892de550bf9528b2849e7ecac536 --- roles/controller/tasks/main.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/roles/controller/tasks/main.yaml b/roles/controller/tasks/main.yaml index fa882a0..7ce455a 100644 --- a/roles/controller/tasks/main.yaml +++ b/roles/controller/tasks/main.yaml @@ -41,9 +41,10 @@ url: "{{ item }}" dest: "{{ tmpdir.path }}" mode: 0664 + timeout: 600 # tigera-operator manifest is large, so increase timeout from 10s default loop: - - https://projectcalico.docs.tigera.io/manifests/tigera-operator.yaml - - https://projectcalico.docs.tigera.io/manifests/custom-resources.yaml + - https://raw.githubusercontent.com/projectcalico/calico/v3.24.5/manifests/tigera-operator.yaml + - https://raw.githubusercontent.com/projectcalico/calico/v3.24.5/manifests/custom-resources.yaml - name: Ensure Calico Pod CIDR is correct ansible.builtin.lineinfile: -- GitLab