fix(vm-default-images): refresh stale Alpine and openSUSE 16.0 image URLs#3063
Conversation
…URLs Two default golden-image URLs had drifted from their canonical source: - alpine-3.21 was pinned to patch 3.21.6, but Alpine's CDN now ships 3.21.7 and prunes old patches over time, so the pin would eventually 404. Bump it to 3.21.7. - opensuse-leap-16.0 pointed at the Open Build Service staging tree (repositories/openSUSE:/Leap:/16.0:/Images/) rather than the canonical released-product tree. Switch to distribution/leap/16.0/appliances/, which serves the identical image from a more stable location. The other 14 default image URLs use floating current/latest pointers on canonical vendor hosts and need no change. Both new URLs were verified to return HTTP 200 and serve valid QCOW2 images. Signed-off-by: Myasnikov Daniil <myasnikovdaniil2001@gmail.com> Assisted-By: Claude <noreply@anthropic.com> Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Summary of ChangesHello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request ensures the reliability of default VM golden images by updating stale download URLs. By pointing to the latest patch version for Alpine and the canonical distribution path for openSUSE, the changes prevent future broken links and ensure that the images are fetched from stable, official sources. Highlights
New Features🧠 You can now enable Memory (public preview) to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize the Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counterproductive. You can react with 👍 and 👎 on Gemini (@gemini-code-assist) comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for GitHub and other Google products, sign up here. Footnotes
|
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (1)
📝 WalkthroughWalkthroughUpdated two default VM image URLs in ChangesVM default image URL updates
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Poem
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Code Review
This pull request updates the default VM image URLs in packages/system/vm-default-images/values.yaml. Specifically, it updates the download URL for the openSUSE Leap 16.0 image to point to the official distribution appliances path, and bumps the Alpine 3.21 image version from 3.21.6 to 3.21.7. There are no review comments, and I have no feedback to provide.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
Aleksei Sviridkin (lexfrei)
left a comment
There was a problem hiding this comment.
LGTM — both refreshed URLs verified: HTTP 200 and a valid QCOW2 magic header (51 46 49 fb).
Business context: two default golden-image URLs in vm-default-images had drifted from their canonical sources and would eventually 404 (#3063 description).
Verified independently:
alpine-3.21→3.21.7: 200 + valid QCOW2. The old3.21.6still resolves today, so this is a preventive bump against CDN pruning rather than a current outage — accurate to the PR's reasoning. As noted in the description, Alpine publishes nolatestsymlink for cloud images, so this patch pin will need periodic re-bumping (or automation) when3.21.8lands and3.21.7is pruned.opensuse-leap-16.0→ distributionappliances/tree: 200 + valid QCOW2, same image served from the stable released-product path instead of the OBS staging tree.
No resource-name or storage change, no checksum field to keep in sync, so nothing downstream breaks. Leaving opensuse-leap-15.6 on the staging path is the right call given the flavor change it would require. No blockers.
What this PR does
Refreshes two default golden-image download URLs in
vm-default-imagesthat had drifted from their canonical source. This came out of a correctness re-check of all 16 default image URLs — the other 14 use floatingcurrent/latestpointers on canonical vendor hosts and need no change.3.21.6. Alpine's CDN now ships3.21.7and prunes older patches over time, so this hardcoded pin would eventually 404. Bumped to3.21.7. (Alpine publishes nolatestsymlink for cloud images, so a patch pin is unavoidable — it just needs to track the newest patch.)repositories/openSUSE:/Leap:/16.0:/Images/) rather than the canonical released-product tree. Switched todistribution/leap/16.0/appliances/, which serves the identical image from a more stable, official location.Both new URLs were verified to return HTTP 200 and serve valid QCOW2 images (magic
QFI\xfb).Release note
Summary by CodeRabbit