From a4dde1bc6bd6832e871680d95fa514fd33a13699 Mon Sep 17 00:00:00 2001 From: Will Dennis Date: Tue, 19 Apr 2022 10:28:20 -0400 Subject: [PATCH] Update Calico manifest URL The current Calico manifest URL (https://docs.projectcalico.org/v3.10/manifests/calico.yaml) errors out with various deprecations errors; updating var value to current URL found in Calico install docs (https://projectcalico.docs.tigera.io/getting-started/kubernetes/self-managed-onprem/onpremises) fixes issues in the calling play and runs fine. --- defaults/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/defaults/main.yml b/defaults/main.yml index 18956cc..4fbd75e 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -70,4 +70,4 @@ kubernetes_flannel_manifest_file_rbac: https://raw.githubusercontent.com/coreos/ kubernetes_flannel_manifest_file: https://raw.githubusercontent.com/coreos/flannel/master/Documentation/kube-flannel.yml # Calico config files -kubernetes_calico_manifest_file: https://docs.projectcalico.org/v3.10/manifests/calico.yaml +kubernetes_calico_manifest_file: https://projectcalico.docs.tigera.io/manifests/calico.yaml