You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
751 B

  1. ---
  2. driver:
  3. name: vagrant
  4. provider:
  5. name: libvirt
  6. options:
  7. driver: kvm
  8. lint: |
  9. set -e
  10. yamllint -c ../../../.yamllint .
  11. platforms:
  12. - name: ubuntu18
  13. box: generic/ubuntu1804
  14. cpus: 1
  15. memory: 1024
  16. nested: true
  17. groups:
  18. - kube_control_plane
  19. - name: ubuntu20
  20. box: generic/ubuntu2004
  21. cpus: 1
  22. memory: 1024
  23. nested: true
  24. groups:
  25. - kube_control_plane
  26. provisioner:
  27. name: ansible
  28. env:
  29. ANSIBLE_ROLES_PATH: ../../../../
  30. config_options:
  31. defaults:
  32. callback_whitelist: profile_tasks
  33. lint:
  34. name: ansible-lint
  35. options:
  36. c: ../../../.ansible-lint
  37. inventory:
  38. group_vars:
  39. all:
  40. become: true
  41. verifier:
  42. name: testinfra
  43. lint:
  44. name: flake8