Я использую URI, чтобы получить вывод JSOn в регистр с именем "vchosts"
TASK [debug] *************************************************************************************************************************************************************************************************
ok: [localhost] => {
"vchosts": {
"changed": false,
"msg": "All items completed",
"results": [
{
"_ansible_ignore_errors": null,
"_ansible_item_result": true,
"_ansible_no_log": false,
"_ansible_parsed": true,
"changed": false,
"connection": "close",
"content_type": "application/json",
"cookies": {},
"date": "Mon, 11 Jun 2018 09:50:45 GMT",
"failed": false,
"invocation": {
"module_args": {
"attributes": null,
"backup": null,
"body": null,
"body_format": "raw",
"client_cert": null,
"client_key": null,
"content": null,
"creates": null,
"delimiter": null,
"dest": null,
"directory_mode": null,
"follow": false,
"follow_redirects": "safe",
"force": false,
"force_basic_auth": true,
"group": null,
"headers": {
"Cookie": "vmware-api-session-id=56fa6d3015150212b086917d15165bee;Path=/rest;Secure;HttpOnly"
},
"http_agent": "ansible-httpget",
"method": "GET",
"mode": null,
"owner": null,
"regexp": null,
"remote_src": null,
"removes": null,
"return_content": false,
"selevel": null,
"serole": null,
"setype": null,
"seuser": null,
"src": null,
"status_code": [
200
],
"timeout": 30,
"unsafe_writes": null,
"url": "https://vcenter01.lab.test/rest/vcenter/host?filter.clusters=domain-c310",
"url_password": null,
"url_username": null,
"use_proxy": true,
"validate_certs": false
}
},
"item": {
"cluster": "domain-c310",
"drs_enabled": true,
"ha_enabled": false,
"name": "DB-CLUSTER"
},
"json": {
"value": [
{
"connection_state": "CONNECTED",
"host": "host-312",
"name": "vmh19.lab.test",
"power_state": "POWERED_ON"
},
{
"connection_state": "CONNECTED",
"host": "host-313",
"name": "vmh20.lab.test",
"power_state": "POWERED_ON"
}
]
},
"msg": "OK (unknown bytes)",
"redirected": false,
"status": 200,
"url": "https://vcenter01.lab.test/rest/vcenter/host?filter.clusters=domain-c310"
}
]
}
}
Из полного JSON мне просто нужны значения:
"имя": "vmh20.lab.test" "имя": "vmh19.lab.test"
Эти выходные данные могут дать любое количество хостов в кластере в зависимости от размера кластера.
Я хочу использовать эти значения как запись для имени хоста в задаче:
- name: Modify root local user to ESXi
vmware_local_user_manager:
hostname: '{{ item.results.json.value.name }}'
username: root
password: '{{ esxi_pass }}'
local_user_name: root
local_user_password: '{{ esxi_new_pass }}'
validate_certs: False
with_items:
- "{{ vchosts }}"
но это не работает как с ошибкой:
TASK [Modify root local user to ESXi] **********************************************************************************************************************************************************************
fatal: [localhost]: FAILED! => {"msg": "The task includes an option with an undefined variable. The error was: 'list object' has no attribute 'json'\n\nThe error appears to have been in '/Users/jv/Workspace/vmware-powershell/ansible/site.yml': line 90, column 5, but may\nbe elsewhere in the file depending on the exact syntax problem.\n\nThe offending line appears to be:\n\n\n - name: Modify root local user to ESXi\n ^ here\n"}
Исследуя немного больше с помощью отладки, я пробовал
- debug:
var: item.json.value.name
with_items:
- "{{ vchosts.results }}"
но на выходе получается
TASK [debug] ***********************************************************************************************************************************************************************************************
ok: [localhost] => (item=None) => {
"msg": "Hello world!"
}
Я также пробовал:
- debug:
var: item.vchosts.results.json.value[*].name
with_items:
- "{{ vchosts }}"
- debug:
var: item
with_items:
- "{{ vchosts | json_query('[*].value[*].{name: name}') }}"
и у меня такой же Hello world, что и раньше. последнее, что я пробовал, было
- debug:
var: item.name
with_items:
- "{{ vchosts | json_query('*.value') }}"
и вместо Hello world я получаю пустой вывод в задаче
TASK [debug] ***********************************************************************************************************************************************************************************************
Я использую ansible 2.5.4
Если вам просто нужны значения vmh20.lab.test и vmh19.lab.test, разве это не тот код, который вы ищете?
- name: Modify root local user to ESXi
vmware_local_user_manager:
hostname: '{{ item }}'
username: root
password: '{{ esxi_pass }}'
local_user_name: root
local_user_password: '{{ esxi_new_pass }}'
validate_certs: False
with_items:
- vmh20.lab.test
- vmh19.lab.test
Я не знаю почему это
- debug: var=item.name
with_items:
- "{{ vchosts.json.value }}"
это не то же самое, что
- debug:
var: item.name
with_items:
- "{{ vchosts.json.value }}"
и на самом деле это сводило меня с ума, это наверняка ошибка в этой версии ansible
проблема в том, что он взял элементы в моем первом запросе как список внутри Json, и вам нужно их перечислить.
Чтобы не получить грязный "vchosts" JSON, вам нужно использовать только один элемент из "vcclust", поэтому код заканчивается следующим образом:
- name: Get vCenter cluster ID for {{ cluster_touched }}
uri:
url: "https://{{ vcenter_hostname }}/rest/vcenter/cluster?filter.names={{ cluster_touched }}"
force_basic_auth: yes
validate_certs: no
headers:
Cookie: '{{ login.set_cookie }}'
register: vcclust
- name: Get ESXi nodes from cluster ID for {{ cluster_touched }}
uri:
url: "https://{{ vcenter_hostname }}/rest/vcenter/host?filter.clusters={{ vcclust.json.value[0].cluster }}"
force_basic_auth: yes
validate_certs: no
headers:
Cookie: '{{ login.set_cookie }}'
register: vchosts
- name: Modify root local user to ESXi
vmware_local_user_manager:
hostname: '{{ item.name }}'
username: root
password: '{{ esxi_pass }}'
local_user_name: root
local_user_password: '{{ esxi_new_pass }}'
validate_certs: False
with_items:
- "{{ vchosts.json.value }}"