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

Use supported version of fedora in CI (#10108) * tests: replace fedora35 with fedora37 Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * tests: replace fedora36 with fedora38 Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * docs: update fedora version in docs Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * molecule: upgrade fedora version Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * tests: upgrade fedora images for vagrant and kubevirt Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * vagrant: workaround to fix private network ip address in fedora Fedora stop supporting syconfig network script so we added a workaround here https://github.com/hashicorp/vagrant/issues/12762#issuecomment-1535957837 to fix it. * netowrkmanager: do not configure dns if using systemd-resolved We should not configure dns if we point to systemd-resolved. Systemd-resolved is using NetworkManager to infer the upstream DNS server so if we set NetworkManager to 127.0.0.53 it will prevent systemd-resolved to get the correct network DNS server. Thus if we are in this case we just don't set this setting. Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * image-builder: update centos7 image Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * gitlab-ci: mark fedora packet jobs as allow failure Fedora networking is still broken on Packet, let's mark it as allow failure for now. Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> --------- Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch>
1 year ago
  1. ---
  2. role_name_check: 1
  3. driver:
  4. name: vagrant
  5. provider:
  6. name: libvirt
  7. platforms:
  8. - name: ubuntu20
  9. box: generic/ubuntu2004
  10. cpus: 2
  11. memory: 1024
  12. groups:
  13. - kube_control_plane
  14. - kube_node
  15. - k8s_cluster
  16. provider_options:
  17. driver: kvm
  18. - name: almalinux8
  19. box: almalinux/8
  20. cpus: 2
  21. memory: 1024
  22. groups:
  23. - kube_control_plane
  24. - kube_node
  25. - k8s_cluster
  26. provider_options:
  27. driver: kvm
  28. - name: fedora
  29. box: fedora/38-cloud-base
  30. cpus: 2
  31. memory: 2048
  32. groups:
  33. - kube_control_plane
  34. - kube_node
  35. - k8s_cluster
  36. provider_options:
  37. driver: kvm
  38. - name: debian10
  39. box: generic/debian10
  40. cpus: 2
  41. memory: 1024
  42. groups:
  43. - kube_control_plane
  44. - kube_node
  45. - k8s_cluster
  46. provider_options:
  47. driver: kvm
  48. provisioner:
  49. name: ansible
  50. env:
  51. ANSIBLE_ROLES_PATH: ../../../../
  52. config_options:
  53. defaults:
  54. callbacks_enabled: profile_tasks
  55. timeout: 120
  56. verifier:
  57. name: testinfra