--- - name: "Ensure {{ app_data_path }} exists" file: path: "{{ app_data_path }}/downloads" state: directory - name: "Install rke-{{ rke_version }}" get_url: url: "https://github.com/rancher/rke/releases/download/v{{ rke_version }}/rke_linux-amd64" dest: "{{ app_data_path }}/downloads/rke" - name: "Install kubectl-{{ kubectl_version }}" get_url: url: "https://storage.googleapis.com/kubernetes-release/release/v{{ kubectl_version }}/bin/linux/amd64/kubectl" dest: "/usr/local/bin/kubectl" mode: 0755