mirror of
https://github.com/kubevirt/kubevirt.core.git
synced 2026-03-26 19:03:16 +00:00
This adds yamllint to the CI linter job and sets the maximum line length to 140 like in kubevirt/kubevirt. Signed-off-by: Felix Matouschek <fmatouschek@redhat.com>
11 lines
272 B
YAML
11 lines
272 B
YAML
---
|
|
- name: Playbook describing a virtual machine
|
|
hosts: localhost
|
|
tasks:
|
|
- name: Describe VM
|
|
kubevirt.core.kubevirt_vm_info:
|
|
register: result
|
|
- name: Print return information from the previous task
|
|
ansible.builtin.debug:
|
|
var: result
|