From cbc2df282b867b0a0a1fd892c5ced0c2d71c4c23 Mon Sep 17 00:00:00 2001 From: Henry Geay de Montenon Date: Mon, 11 Oct 2021 18:41:53 +0200 Subject: [PATCH] Using a variable instead of hardcoding RHCOS image url --- tasks/deploy_cluster_sno_iso.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/deploy_cluster_sno_iso.yml b/tasks/deploy_cluster_sno_iso.yml index 63ab56b..0f247ec 100644 --- a/tasks/deploy_cluster_sno_iso.yml +++ b/tasks/deploy_cluster_sno_iso.yml @@ -17,7 +17,7 @@ - name: Downloading live ISO ansible.builtin.get_url: - url: https://mirror.openshift.com/pub/openshift-v4/dependencies/rhcos/latest/latest/rhcos-4.8.2-x86_64-live.x86_64.iso + url: "{{ rhcos_iso_url }}" dest: "/root/lab/base.iso" mode: 0644 when: not embed_result.stat.exists