launchpad-reviewers team mailing list archive
-
launchpad-reviewers team
-
Mailing list archive
-
Message #32384
[Merge] ~tushar5526/launchpad-mojo-specs/+git/private:upgrade-qastaging-gpu-builders-to-noble into ~launchpad/launchpad-mojo-specs/+git/private:vbuilder
Tushar Gupta has proposed merging ~tushar5526/launchpad-mojo-specs/+git/private:upgrade-qastaging-gpu-builders-to-noble into ~launchpad/launchpad-mojo-specs/+git/private:vbuilder.
Requested reviews:
Launchpad code reviewers (launchpad-reviewers)
For more details, see:
https://code.launchpad.net/~tushar5526/launchpad-mojo-specs/+git/private/+merge/484498
--
Your team Launchpad code reviewers is requested to review the proposed merge of ~tushar5526/launchpad-mojo-specs/+git/private:upgrade-qastaging-gpu-builders-to-noble into ~launchpad/launchpad-mojo-specs/+git/private:vbuilder.
diff --git a/vbuilder/bundle.yaml b/vbuilder/bundle.yaml
index 19eb047..b934148 100644
--- a/vbuilder/bundle.yaml
+++ b/vbuilder/bundle.yaml
@@ -177,7 +177,11 @@ applications:
options:
content_id_template: "{{ content_id_template }}:gpu"
mirror_list: |-
+{%- if stage_name == "qastaging" %}
+ [{url: "http://cloud-images.ubuntu.com/daily/", name_prefix: "ubuntu:released", path: "streams/v1/index.sjson", max: 3, item_filters: ["release~({{ gss_series_with_noble }})", "arch~(x86_64|amd64)", "ftype~(disk1.img|disk.img)"]}]
+{%- else %}
[{url: "http://cloud-images.ubuntu.com/daily/", name_prefix: "ubuntu:released", path: "streams/v1/index.sjson", max: 3, item_filters: ["release~({{ gss_series }})", "arch~(x86_64|amd64)", "ftype~(disk1.img|disk.img)"]}]
+{%- endif %}
name_prefix: "{{ name_prefix }}-gpu/"
openstack-auth-url: "https://keystone.ps6.canonical.com:5000/v3"
openstack-identity-api-version: "3"
@@ -211,7 +215,11 @@ applications:
content_id_template: "{{ content_id_template }}:gpu"
custom_properties: "hypervisor_type=kvm hw_firmware_type=uefi"
mirror_list: |-
+{%- if stage_name == "qastaging" %}
+ [{url: "http://cloud-images.ubuntu.com/daily/", name_prefix: "ubuntu:released", path: "streams/v1/index.sjson", max: 3, item_filters: ["release~({{ gss_series_with_noble }})", "arch~(arm64|aarch64)", "ftype~(disk1.img|disk.img)"]}]
+{%- else %}
[{url: "http://cloud-images.ubuntu.com/daily/", name_prefix: "ubuntu:released", path: "streams/v1/index.sjson", max: 3, item_filters: ["release~({{ gss_series }})", "arch~(arm64|aarch64)", "ftype~(disk1.img|disk.img)"]}]
+{%- endif %}
name_prefix: "{{ name_prefix }}-gpu/"
openstack-auth-url: "https://keystone.ps6.canonical.com:5000/v3"
openstack-identity-api-version: "3"
diff --git a/vbuilder/rebuild-images b/vbuilder/rebuild-images
index 894b656..8a86aff 100755
--- a/vbuilder/rebuild-images
+++ b/vbuilder/rebuild-images
@@ -14,9 +14,9 @@ name_prefix_by_stage = {
targets_by_stage = {
"qastaging": [
("bos03", "amd64", "", "noble"),
- ("bos03", "amd64", "-gpu", "focal"),
+ ("bos03", "amd64", "-gpu", "noble"),
("bos03", "arm64", "", "noble"),
- ("bos03", "arm64", "-gpu", "focal"),
+ ("bos03", "arm64", "-gpu", "noble"),
("bos03", "ppc64el", "", "focal"),
("bos03", "riscv64", "", "noble"),
("bos03", "s390x", "", "focal"),
Follow ups