gpt4 book ai didi

Ansible:使用 ansible 事实,如何根据存储 Controller 值获取磁盘设备,然后将该设备设置为变量

转载 作者:行者123 更新时间:2023-12-04 18:21:31 27 4
gpt4 key购买 nike

上下文:我的系统包含来自不同存储 Controller 的磁盘组合,因此每种类型的磁盘都有不同的用途。我是 ansible 的新手,我一边学习一边学习。编写一个剧本,从每种类型的 Controller 获取磁盘,以便我可以设置它们。

前任。下面是来自 #'filter=ansible_devices*' 的示例输出...... sdz 设备来自 SATA Controller 。在我的其他主机上,它可能并不总是 sdz .. 所以我想获取设备名称并存储在一个变量中,如果事实上设备具有“主机”:“SATA Controller ”。我在想也许我需要遍历 ansible_devices 字典,找到匹配的键(“主机”:“SATA Controller ”),然后获取它的父字典,这将是设备。有没有办法做到这一点......或更简单的方法? :)

"sdz": {
"holders": [
"mpathz"
],
"host": "SATA controller: Intel Corporation C610/X99 series chipset 6-Port SATA Controller [AHCI mode] (rev 05)",
"links": {
"ids": [
"ata-SAMSUNG_MZ7GE960HMHP-00003_S1Y2NYAFC02269",
"wwn-0x50025388003aeb2a"
],
"labels": [],
"masters": [
"dm-19"
],
"uuids": []
},
"model": "SAMSUNG MZ7GE960",
"partitions": {},
"removable": "0",
"rotational": "0",
"sas_address": null,
"sas_device_handle": null,
"scheduler_mode": "cfq",
"sectors": "1875385008",
"sectorsize": "512",
"serial": "S1Y2NYAFC02269",
"size": "894.25 GB",
"support_discard": "512",
"vendor": "ATA",
"virtual": 1,
"wwn": "0x50025388003aeb2a"

最佳答案

假设ansible_devices,剧本中的这个任务片段应该这样做。已经设置为变量

 tasks:

- name: get device name
set_fact:
device_name: "{{ item.key }}"
no_log: True
with_dict: "{{ ansible_devices }}"
when: "item.value.host.startswith('SATA')"

- name: show all values for selected device name
debug: var=ansible_devices[device_name]

- name: show only device name
debug: var=device_name

set_fact 将获取您的设备名称。这两个调试语句将分别转储所有设备值和设备名称。

关于Ansible:使用 ansible 事实,如何根据存储 Controller 值获取磁盘设备,然后将该设备设置为变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48036051/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com