如何在多个字段上使用with_items从ansible k8s模块中检索/解析结果

时间:2019-10-21 19:25:20

标签: ansible ansible-2.x ansible-facts

团队, 我的任务在json输出中运行良好,但我只想查找pod名称和名称空间,而不是输出整个pod json输出。因此,我正在使用debug拉出pod的名称,但不确定如何沿着侧面名称空间拉所有pod的名称。

有什么提示吗?我无法从这里了解:extracting a variable from json output then debug and register the outout with ansible

      - name: "Get a list of all pods from any namespace"
        k8s_facts:
          kind: Pod
          namespace: webhook
          kubeconfig: $WORKSPACE
          verify_ssl: no
        register: pod_list
      - debug:
          var: pod_list

      - name: list names and namespaces
        debug:
          msg: "{{ pod_list.resources[0].metadata.name }}"

输出:

TASK [3_validations_on_ssh : list names and namespaces] *******************************************************************************************************************************
ok: [target1] => {
    "msg": "k8s-webhook-auth-xxxx1"
}

寻找容器的样本输出片段如下:类似地,它继续用于pod_lsit中的其他容器


TASK [3_validations_on_ssh : debug] *****************************************************
ok: [target1] => {
    "pod_list": {
        "changed": false,
        "failed": false,
        "resources": [
            {
                "apiVersion": "v1",
                "kind": "Pod",
                "metadata": {
                    "creationTimestamp": "2019-10-11T18:44:04Z",
                    "generateName": "k8s-webhook-auth-",
                    "labels": {
                        "app": "k8s-webhook-auth",
                        "controller-revision-hash": "666c6cb69d",
                        "pod-template-generation": "20",
                        "release": "k8s-webhook-auth"
                    },
                    "name": "k8s-webhook-auth-xxxx1",
                    "namespace": "webhook",
                    "ownerReferences": [
                        {
                            "apiVersion": "apps/v1",
                            "blockOwnerDeletion": true,
                            "controller": true,
                            "kind": "DaemonSet",
                            "name": "k8s-webhook-auth",
                            "uid": "1e9-8e9b-ac1f6b4ea082"
                        }
                    ],
                    "resourceVersion": "47592900",
                    "selfLink": "/api/v1/namespaces/webhook/pods/k8s-webhook-auth-5jx6w",
                    "uid": "1e9-8e9b-ac1f6b4ea082"
                },

预期输出:

k8s-webhook-auth-xxxx1 webhook
k8s-webhook-auth-xxxx2 webhook
k8s-webhook-auth-xxxx3 webhook

1 个答案:

答案 0 :(得分:1)

我认为您需要一个循环来获取所需的确切输出,但这意味着它不会出现在单个“消息”中,而是每个吊舱一个消息,例如:

 - debug:
    msg: "{{ item.metadata.name }} {{ item.metadata.namespace }}"
  loop: "{{ pod_list.resources }}"

另一个选择是使用所需数据创建一个新对象。我将在下面给出2个示例,但是有很多不同的选择。这些示例使用debug来显示输出,但是您可能想要使用set_fact

 - debug:
    var: pod_list | json_query('resources[].[metadata.name, metadata.namespace]')
 - debug:
    var: pod_list | json_query(query)
  vars:
    query: 'resources[].{name: metadata.name, namespace: metadata.namespace}'

修改:更多示例

要限制循环输出,请查看loop control文档。这是使用广告连播名称的示例:

- debug:
    msg: "{{ item.metadata.name }} {{ item.metadata.namespace }}"
  loop: "{{ pod_list.resources }}"
  loop_control:
    label: "{{ item.metadata.name }}"

要将输出分配给新变量,请使用set_fact。请注意,如果与循环结合使用,结果将是多个对象的列表。这是使用上述debug任务之一的示例:

- set_fact:
    pods: "{{ pod_list | json_query(query) }}"
  vars:
    query: 'resources[].{name: metadata.name, namespace: metadata.namespace}'

- debug:
    var: pods