download: remove 'v' version prefix from defaults

also remove the version key in all dict in downloads since it's not used
anywhere.
This commit is contained in:
Max Gautier
2025-01-13 18:14:39 +01:00
parent 8467724aab
commit f6ae46c9d8
2 changed files with 95 additions and 119 deletions

View File

@@ -28,7 +28,7 @@ kube_proxy_mode: ipvs
# Kubeadm config api version
# If kube_version is v1.31 or higher, it will be v1beta4, otherwise it will be v1beta3.
kubeadm_config_api_version: "{{ 'v1beta4' if kube_version is version('v1.31.0', '>=') else 'v1beta3' }}"
kubeadm_config_api_version: "{{ 'v1beta4' if kube_version is version('1.31.0', '>=') else 'v1beta3' }}"
# Debugging option for the kubeadm config validate command
# Set to false only for development and testing scenarios where validation is expected to fail (pre-release Kubernetes versions, etc.)