-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow image specs with regex (name_scheme), allow multiple source URL…
… prefixes Signed-off-by: Matthias Büchse <[email protected]>
- Loading branch information
Showing
2 changed files
with
34 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,26 @@ | ||
images: | ||
- name: "Ubuntu 22.04" | ||
source: https://cloud-images.ubuntu.com/releases/jammy/ | ||
source: | ||
- https://cloud-images.ubuntu.com/releases/jammy/ | ||
- https://cloud-images.ubuntu.com/jammy/ | ||
status: mandatory | ||
- name: "Kubernetes CAPI 1.27.3" | ||
source: https://minio.services.osism.tech/openstack-k8s-capi-images/ubuntu-2204-kube-v1.27/ubuntu-2204-kube-v1.27.3.qcow2 | ||
- name: "ubuntu-2204-kube" | ||
name_scheme: "ubuntu-2204-kube-v[0-9].[0-9]+(.[0-9]+)?" | ||
source: https://swift.services.a.regiocloud.tech/swift/v1/AUTH_b182637428444b9aa302bb8d5a5a418c/openstack-k8s-capi-images/ubuntu-2204-kube | ||
status: recommended | ||
- name: "Ubuntu 20.04" | ||
source: https://cloud-images.ubuntu.com/releases/focal/ | ||
source: | ||
- https://cloud-images.ubuntu.com/releases/focal/ | ||
- https://cloud-images.ubuntu.com/focal/ | ||
- name: "Debian 12" | ||
source: https://cloud.debian.org/images/cloud/bookworm/ | ||
source: | ||
- https://cloud.debian.org/images/cloud/bookworm/ | ||
- https://cdimage.debian.org/cdimage/cloud/bookworm/ | ||
- name: "Debian 11" | ||
source: https://cloud.debian.org/images/cloud/bullseye/ | ||
source: | ||
- https://cloud.debian.org/images/cloud/bullseye/ | ||
- https://cdimage.debian.org/cdimage/cloud/bullseye/ | ||
- name: "Debian 10" | ||
source: https://cloud.debian.org/images/cloud/buster/ | ||
source: | ||
- https://cloud.debian.org/images/cloud/buster/ | ||
- https://cdimage.debian.org/cdimage/cloud/buster/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters