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.

48 lines
835 B

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