diff --git a/curl_execute.yaml b/curl_execute.yaml index db6bc92..0abc810 100644 --- a/curl_execute.yaml +++ b/curl_execute.yaml @@ -9,6 +9,11 @@ state: directory mode: '0755' + - name: Remove Old Scripts + shell: "rm /tmp/downloaded_scripts/{{ item.item.name }} || true" + loop: "{{ downloaded_scripts.results }}" + register: script_output + - name: Download scripts using curl command: > curl "{{ item.url }}" -o "/tmp/downloaded_scripts/{{ item.name }}" diff --git a/test-scripts/install_k8s.sh b/test-scripts/install_k8s.sh index de85d6a..7604fcf 100644 --- a/test-scripts/install_k8s.sh +++ b/test-scripts/install_k8s.sh @@ -48,7 +48,7 @@ while [ $# -gt 0 ]; do done echo "Provision Kubernetes With IP $VM_IP" -exit +#exit KUBEVERSION="1.32.3-1.1" HELMVERSION="3.14.2"