2

嗨,我想知道如何选择嵌套在列表属性中的列表。我对我的 F5 BIG IP 进行了研究,它给了我一个虚拟服务器的属性列表,如下所示:

    "/Common/vs_portailopal_wi_https_virtual_server": {
        "last_hop_pool": "",
        "name": "vs_portailopal_wi_https_virtual_server",
        "nat64_state": "STATE_DISABLED",
        "object_status": {
            "availability_status": "AVAILABILITY_STATUS_RED",
            "enabled_status": "ENABLED_STATUS_DISABLED",
            "status_description": "The children pool member(s) are down"
        },
        "profile": [
            {
                "profile_context": "PROFILE_CONTEXT_TYPE_CLIENT",
                "profile_name": "/Common/vs_portailopal_wi_clientssl_profile",
                "profile_type": "PROFILE_TYPE_CLIENT_SSL"
            },
            {
                "profile_context": "PROFILE_CONTEXT_TYPE_ALL",
                "profile_name": "/Common/vs_portailopal_wi_http_profile",
                "profile_type": "PROFILE_TYPE_HTTP"
            },
            {
                "profile_context": "PROFILE_CONTEXT_TYPE_ALL",
                "profile_name": "/Common/vs_portailopal_wi_http_profile-cache",
                "profile_type": "PROFILE_TYPE_WEBACCELERATION"
            },]
        },
    },

所以我想比较一下虚拟服务器的名称和每个配置文件的名称。我可以选择虚拟服务器的名称,但我无法在配置文件列表中输入以选择名称,因为它是属性中的嵌套列表

这是我在做的:

---
- name: Search
hosts: F5
gather_facts: no
connection: local


vars:
  username: '{{ cpt_username }}'
  password: '{{ cpt_password }}'

tasks: 


  - name: Get virtual-servers
    bigip_facts:
      include:
        - virtual_server
      server: '{{ inventory_hostname }}'
      user: '{{ username }}'
      password: '{{ password }}'
      validate_certs: no



  - name: filter on VIP_nommage when VIP_partition is OK
    lineinfile: 
      line: 
        - "{{ inventory_hostname }}  Virtual Server : {{ item.key }} => POOL: {{ item.value.profile.name }}" 
      dest: "xxxxx/file.csv"
      state: present
    with_dict: "{{ virtual_server }}"

我想将每个虚拟服务器的所有配置文件名称存储在文件中,并将其名称存储在其他任务过滤器中。

4

1 回答 1

0

我不熟悉 bigip Ansible 模块,而且我绝对没有任何 F5 工具包可以测试 :) 在说别的之前,一个重要的说明是文档说“bigip_facts”现在已被弃用,你应该使用“bigip_device_facts”。但是如果你想使用这个模块,你可以做几件事:

1) 编辑您的原始问题以添加您在回复中发布的详细信息。最好使用附加信息继续编辑您的原始问题,而不是添加答案,因为这样更容易理解您的整个情况。

2)创建一个新的剧本,其中包含:

---
- hosts: F5
  gather_facts: no
  connection: local

  vars:
    username: '{{ cpt_username }}'
    password: '{{ cpt_password }}'

  tasks: 
    - name: Get virtual-servers
      bigip_facts:
        include:
          - virtual_server
        server: '{{ inventory_hostname }}'
        user: '{{ username }}'
        password: '{{ password }}'
        validate_certs: no
      register: bigip_facts_data

    - name: Display collected data
      debug:
        var: bigip_facts_data

这将向我们展示 Ansible 实际使用的数据。将输出粘贴到您的原始回复中,代替您最初粘贴的 JSON。它可能看起来像这样:

"/Common/vs_portailopal_wi_https_virtual_server":
  last_hop_pool: ''
  name: vs_portailopal_wi_https_virtual_server
  nat64_state: STATE_DISABLED
  object_status:
    availability_status: AVAILABILITY_STATUS_RED
    enabled_status: ENABLED_STATUS_DISABLED
    status_description: The children pool member(s) are down
  profile:
  - profile_context: PROFILE_CONTEXT_TYPE_CLIENT
    profile_name: "/Common/vs_portailopal_wi_clientssl_profile"
    profile_type: PROFILE_TYPE_CLIENT_SSL
  - profile_context: PROFILE_CONTEXT_TYPE_ALL
    profile_name: "/Common/vs_portailopal_wi_http_profile"
    profile_type: PROFILE_TYPE_HTTP
  - profile_context: PROFILE_CONTEXT_TYPE_ALL
    profile_name: "/Common/vs_portailopal_wi_http_profile-cache"
    profile_type: PROFILE_TYPE_WEBACCELERATION

如果是这样,那么这可能会产生您需要的输出(虽然我仍然不清楚我完全理解您的要求 - 希望我们更接近):

 - name: filter on VIP_nommage when VIP_partition is OK
    lineinfile: 
      line: 
        - "{{ inventory_hostname }}  Virtual Server : {{ item.0.name }} => POOL: {{ item.1.profile_name }}" 
      dest: "xxxxx/file.csv"
      state: present
    with_subelements:
      - "{{ bigip_fact_data }}"
      - profile

确实,'with_subelements' 现在与其他 'with_' 构造一起被弃用,但如果你使用的是 'bigip_facts' 我猜你使用的是旧版本的 Ansible。

于 2018-12-14T11:39:45.870 回答