-
Notifications
You must be signed in to change notification settings - Fork 719
templates: add experimental/debian-testing, experimental/ubuntu-next
#3645
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -31,9 +31,11 @@ Distro: | |||||
| - [`rocky-9`](./rocky-9.yaml), `rocky.yaml`: Rocky Linux 9 | ||||||
| - [`ubuntu`](./ubuntu.yaml): Ubuntu (same as `default.yaml` but without extra YAML lines) | ||||||
| - [`ubuntu-lts`](./ubuntu-lts.yaml): Ubuntu LTS (same as `ubuntu.yaml` but pinned to an LTS version) | ||||||
| - [`experimental/ubuntu-next`](./experimental/ubuntu-next.yaml): Ubuntu vNext | ||||||
| - [`experimental/gentoo`](./experimental/gentoo.yaml): [experimental] Gentoo | ||||||
| - [`experimental/opensuse-tumbleweed`](./experimental/opensuse-tumbleweed.yaml): [experimental] openSUSE Tumbleweed | ||||||
| - [`experimental/debian-sid`](./experimental/debian-sid.yaml): [experimental] Debian Sid | ||||||
| - [`experimental/debian-13`](./experimental/debian-13.yaml), `experimental/debian-testing`: [experimental] Debian GNU/Linux 13 (Trixie) | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. All other entries have a
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The suffix doesn't make sense here for template names. Should be fixed at once, probably in a separate PR. |
||||||
|
|
||||||
| Alternative package managers: | ||||||
| - [`linuxbrew.yaml`](./linuxbrew.yaml): [Homebrew](https://brew.sh) on Linux (Ubuntu) | ||||||
|
|
||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| minimumLimaVersion: 1.1.0 | ||
|
|
||
| base: template://_default/mounts | ||
|
|
||
| images: | ||
| - location: https://cloud.debian.org/images/cloud/trixie/daily/latest/debian-13-genericcloud-amd64-daily.qcow2 | ||
| arch: x86_64 | ||
|
|
||
| - location: https://cloud.debian.org/images/cloud/trixie/daily/latest/debian-13-genericcloud-arm64-daily.qcow2 | ||
| arch: aarch64 | ||
|
|
||
| - location: https://cloud.debian.org/images/cloud/trixie/daily/latest/debian-13-genericcloud-ppc64el-daily.qcow2 | ||
| arch: ppc64le | ||
|
|
||
| mountTypesUnsupported: [9p] |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| debian-13.yaml |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| minimumLimaVersion: 1.1.0 | ||
|
|
||
| base: template://_default/mounts | ||
|
|
||
| images: | ||
| - location: https://cloud-images.ubuntu.com/questing/current/questing-server-cloudimg-amd64.img | ||
| arch: x86_64 | ||
| - location: https://cloud-images.ubuntu.com/questing/current/questing-server-cloudimg-arm64.img | ||
| arch: aarch64 | ||
| - location: https://cloud-images.ubuntu.com/questing/current/questing-server-cloudimg-armhf.img | ||
| arch: armv7l | ||
| - location: https://cloud-images.ubuntu.com/questing/current/questing-server-cloudimg-riscv64.img | ||
| arch: riscv64 | ||
| - location: https://cloud-images.ubuntu.com/questing/current/questing-server-cloudimg-s390x.img | ||
| arch: s390x | ||
| - location: https://cloud-images.ubuntu.com/questing/current/questing-server-cloudimg-ppc64el.img | ||
| arch: ppc64le |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| ubuntu-25.10.yaml |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For consistency with the other entries:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Currently we have no
ubuntu-%d.%din the README.Needs to be fixed at once, probably in a separate PR.