9c94df119b
Add EN/RU testing guides, link them from README and docs indexes, and drop stale native Python/Ansible/Terraform suite references.
762 B
762 B
Language / Язык: English | Русский
Ansible
Use ansible.builtin.uri against Engine HTTPS:
- name: List oVirt VMs
hosts: local
gather_facts: false
vars:
engine_api: "https://127.0.0.1/ovirt-engine/api"
tasks:
- name: GET /vms
ansible.builtin.uri:
url: "{{ engine_api }}/vms"
user: admin@internal
password: secret
force_basic_auth: true
validate_certs: false
headers:
Accept: application/json
Version: "4"
status_code: [200]
register: vms
Contract coverage for the Engine API: make pulumi-tests — see
Testing and pulumi-tests/.