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.

57 lines
1.0 KiB

  1. ---
  2. driver:
  3. name: vagrant
  4. provider:
  5. name: libvirt
  6. lint: |
  7. set -e
  8. yamllint -c ../../../.yamllint .
  9. platforms:
  10. - name: ubuntu20
  11. box: generic/ubuntu2004
  12. cpus: 1
  13. memory: 1024
  14. groups:
  15. - kube_control_plane
  16. - kube_node
  17. - k8s_cluster
  18. - name: debian11
  19. box: generic/debian11
  20. cpus: 1
  21. memory: 1024
  22. groups:
  23. - kube_control_plane
  24. - kube_node
  25. - k8s_cluster
  26. - name: almalinux8
  27. box: almalinux/8
  28. cpus: 1
  29. memory: 1024
  30. groups:
  31. - kube_control_plane
  32. - kube_node
  33. - k8s_cluster
  34. - name: opensuse
  35. box: opensuse/Leap-15.3.x86_64
  36. cpus: 1
  37. memory: 1024
  38. groups:
  39. - kube_control_plane
  40. - kube_node
  41. - k8s_cluster
  42. provisioner:
  43. name: ansible
  44. env:
  45. ANSIBLE_ROLES_PATH: ../../../../
  46. config_options:
  47. defaults:
  48. callback_whitelist: profile_tasks
  49. timeout: 120
  50. lint:
  51. name: ansible-lint
  52. options:
  53. c: ../../../.ansible-lint
  54. verifier:
  55. name: testinfra
  56. lint:
  57. name: flake8