diff --git a/defaults/main.yml b/defaults/main.yml index a6702a2..c25fe17 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -6,6 +6,6 @@ kubernetes_interface: '{{ ansible_default_ipv4.interface }}' # value for kuberntes_network: flannel, calico, weave-net #kubernetes_network: weave-net kubernetes_kubeproxy_mode: ipvs -kubernetes_version: 1.23.6 +kubernetes_version: 1.24.2 kubernetes_pods_network: "10.244.0.0/16" lb_auth_pass: 1be344d62acc46c6858ae8475668a245 diff --git a/tasks/cluster_k3s.yml b/tasks/cluster_k3s.yml index a1ad874..28defc1 100644 --- a/tasks/cluster_k3s.yml +++ b/tasks/cluster_k3s.yml @@ -38,7 +38,7 @@ - name: retreive k3s binary for x86_64 get_url: - url: "https://github.com/rancher/k3s/releases/download/v1.23.6%2Bk3s1/k3s" + url: "https://github.com/rancher/k3s/releases/download/v1.24.2%2Bk3s1/k3s" dest: "/usr/local/bin/k3s" group: root owner: root @@ -49,7 +49,7 @@ - name: retreive k3s binary for arm64 get_url: - url: "https://github.com/rancher/k3s/releases/download/v1.23.6%2Bk3s1/k3s-arm64" + url: "https://github.com/rancher/k3s/releases/download/v1.24.2%2Bk3s1/k3s-arm64" dest: "/usr/local/bin/k3s" group: root owner: root @@ -60,7 +60,7 @@ - name: retreive k3s binary for armv6/armv7 get_url: - url: "https://github.com/rancher/k3s/releases/download/v1.23.6%2Bk3s1/k3s-armhf" + url: "https://github.com/rancher/k3s/releases/download/v1.24.2%2Bk3s1/k3s-armhf" dest: "/usr/local/bin/k3s" group: root owner: root