Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: kubevirt/containerdisks
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: ContainerCraft/kmi
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ccio
Choose a head ref
Can’t automatically merge. Don’t worry, you can still create the pull request.
Loading
Showing with 1,659 additions and 88 deletions.
  1. +566 −0 .circleci/config.yml
  2. +6 −0 .github/dependabot.yml
  3. +22 −0 .github/workflows/kind/config.yml
  4. +84 −0 .github/workflows/test.yml
  5. +23 −0 .github/workflows/update.yml
  6. +5 −0 .gitignore
  7. +5 −0 Containerfile
  8. +0 −4 OWNERS
  9. +102 −0 README.md
  10. +176 −0 bake.hcl
  11. +0 −34 build.sh
  12. +0 −9 fedora/35/Dockerfile
  13. +0 −17 fedora/interface.sh
  14. +111 −0 hack/customize.sh
  15. +113 −0 hack/update.sh
  16. +6 −0 images/almalinux-8/env.sh
  17. +7 −0 images/almalinux-8/virt.sysprep
  18. 0 images/amazonlinux/.gitkeep
  19. +4 −0 images/archlinux-latest/env.sh
  20. +6 −0 images/archlinux-latest/virt.sysprep
  21. +7 −0 images/centos-8/env.sh
  22. +7 −0 images/centos-8/virt.sysprep
  23. +7 −0 images/centos-9/env.sh
  24. +7 −0 images/centos-9/virt.sysprep
  25. +5 −0 images/debian-10/env.sh
  26. +3 −0 images/debian-10/virt.sysprep
  27. +5 −0 images/debian-11/env.sh
  28. +3 −0 images/debian-11/virt.sysprep
  29. +8 −0 images/fcos-35/env.sh
  30. +53 −0 images/fcos-35/testvmi.yaml
  31. +7 −0 images/fedora-37/env.sh
  32. +7 −0 images/fedora-37/virt.sysprep
  33. +4 −0 images/freebsd-13/env.sh
  34. 0 images/neutrino/.gitkeep
  35. +6 −0 images/opensuse-leap-15/env.sh
  36. +2 −0 images/opensuse-leap-15/virt.sysprep
  37. +5 −0 images/opensuse-tumbleweed/env.sh
  38. +2 −0 images/opensuse-tumbleweed/virt.sysprep
  39. +7 −0 images/openwrt-21/env.sh
  40. +25 −0 images/openwrt-21/testvmi.yaml
  41. +6 −0 images/rocky-8/env.sh
  42. +7 −0 images/rocky-8/virt.sysprep
  43. +6 −0 images/ubuntu-22.04/env.sh
  44. +4 −0 images/ubuntu-22.04/virt.sysprep
  45. 0 images/vyos/.gitkeep
  46. +0 −7 rhcos/4.9/Dockerfile
  47. +0 −17 rhcos/interface.sh
  48. +24 −0 tests/common.bash
  49. +126 −0 tests/run.bats
  50. +14 −0 tests/ssh-service.yaml
  51. +23 −0 tests/vm-presets.yaml
  52. +43 −0 tests/vmi.yaml
Loading