From patchwork Mon Mar 10 14:18:10 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chuck Lever X-Patchwork-Id: 14010085 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 12EA022ACD4 for ; Mon, 10 Mar 2025 14:18:24 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1741616304; cv=none; b=QdDlRXcwJWUrrauELfaEnE5Voc1LHEmS8y+3viRVUMuhFwrwvxDMS6oDxGZ+304GrjlU2aj7iPt/0C3L/gcn0m6yI1vvVchsHBmDzzex33N7ZWV9Qyi2DeqN1fGdkvE+lZBbTRTk0tObprimF5achenfIocdgDRSpXsAtXZUpmk= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1741616304; c=relaxed/simple; bh=KifOlTUZSzVjDTTikXrjnTq7bRuAb4EnrUCCYvFVm9o=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=U4frVr1J7yqT19oHG3WhXLgzGp34W8z4s8r7443t0a3lyxrp/TnUgmEOf0fDkf2OzV3ou2cx7NlUm3g4Cth3C3khKDJCABtGmAUWu3csnrUX4GspBnhkA1+kPH8+HCStvdfqCgU50MXVnvtYNW5BmqcSCeXucKrKhG0kIrQZBKA= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=o8zsaHat; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="o8zsaHat" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 6BB26C4CEEF; Mon, 10 Mar 2025 14:18:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1741616303; bh=KifOlTUZSzVjDTTikXrjnTq7bRuAb4EnrUCCYvFVm9o=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=o8zsaHatjRSlxzD319xXuO2lMpOzBkvPuEONgrRm2c78I24umuyTU8qWxIP9zBu6w TVReWPAredERdYSpvZCwAXkwc45PAu1xetDiiumbNgC0jnXuDKE7P8AnplXBBr1QZr im8TNc4fGui0rT1nzrIaPXZ/5NtMt1/f+vLyF7fyJvqnjf8x+O2pQO5yl+X8bEPlXe qevnkG/ZVb8a6l9DMdSMMX1o1/l5n1ayvotOIhCnRe7iowkX8nIq4Ibeo1efXn5RMz wqIxLkyVWnvvaBYRYQuIfEZZgyqp+I3h810rp/CJlv+rxZrElxzqPObWxu6D3t3zqI m9UOxqiPI3ocw== From: cel@kernel.org To: Luis Chamberlain , Chandan Babu R , Jeff Layton Cc: , Chuck Lever Subject: [PATCH v1 10/13] volume_group: Create a volume group on Azure nodes Date: Mon, 10 Mar 2025 10:18:10 -0400 Message-ID: <20250310141813.969325-11-cel@kernel.org> X-Mailer: git-send-email 2.48.1 In-Reply-To: <20250310141813.969325-1-cel@kernel.org> References: <20250310141813.969325-1-cel@kernel.org> Precedence: bulk X-Mailing-List: kdevops@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 From: Chuck Lever Signed-off-by: Chuck Lever --- .../volume_group/tasks/terraform/azure.yml | 40 +++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 playbooks/roles/volume_group/tasks/terraform/azure.yml diff --git a/playbooks/roles/volume_group/tasks/terraform/azure.yml b/playbooks/roles/volume_group/tasks/terraform/azure.yml new file mode 100644 index 000000000000..698b4925a327 --- /dev/null +++ b/playbooks/roles/volume_group/tasks/terraform/azure.yml @@ -0,0 +1,40 @@ +--- +# +# To guarantee idempotency, these steps have to generate the exact +# same physical_volumes list every time they are run. +# +# Skip the block device on which the root and temporary file systems +# reside. These devices reside under /dev/disk/cloud/ +# +# Also skip the device to be used for the /data file system. +# + +- name: Detect the root device + ansible.builtin.stat: + path: "/dev/disk/cloud/azure_root" + register: stat_output + +- name: Save the name of the root device + ansible.builtin.set_fact: + root_device: "{{ stat_output.stat.lnk_source.split('/dev/').1 }}" + +- name: Detect the temporary device + ansible.builtin.stat: + path: "/dev/disk/cloud/azure_resource" + register: stat_output + +- name: Save the name of the temporary device + ansible.builtin.set_fact: + tmp_device: "{{ stat_output.stat.lnk_source.split('/dev/').1 }}" + +- name: Add unused extra managed disks to the volume list + ansible.builtin.set_fact: + physical_volumes: "{{ physical_volumes + ['/dev/' + item.key] }}" + when: + - item.value.model == "Virtual Disk" + - root_device != item.key + - tmp_device != item.key + - data_device != "/dev/" + item.key + loop_control: + label: "Adding block device: /dev/{{ item.key }}" + with_dict: "{{ ansible_devices }}"