-
Notifications
You must be signed in to change notification settings - Fork 75
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
fix(FR-382, FR-384): Handle deprecated image name fields in service launcher and image download #3042
Conversation
How to use the Graphite Merge QueueAdd either label to this PR to merge it via the merge queue:
You must have a Graphite account in order to use the merge queue. Sign up using this link. An organization admin has required the Graphite Merge Queue in this repository. Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue. This stack of pull requests is managed by Graphite. Learn more about stacking. |
2b16f2c
to
53437f5
Compare
Coverage report for
|
St.❔ |
Category | Percentage | Covered / Total |
---|---|---|---|
🔴 | Statements | 4.93% | 398/8074 |
🔴 | Branches | 4.25% (-0.01% 🔻) |
239/5617 |
🔴 | Functions | 2.95% | 78/2640 |
🔴 | Lines | 4.85% | 383/7899 |
Test suite run success
124 tests passing in 14 suites.
Report generated by 🧪jest coverage report action from 5e36c40
53437f5
to
70fa7d9
Compare
70fa7d9
to
91dca1f
Compare
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.
LGTM
Merge activity
|
…auncher and image download (#3042) resolves #3043 (FR-384) #3044 (FR-382) Introduces a new `namespace` field for image objects while deprecating the existing `name` field. This change affects how image names are constructed throughout the application, particularly in the image installation modal, service launcher, and endpoint detail pages. The image name construction now prioritizes the `namespace` field, falling back to `name` when namespace is not available: `registry/namespace:tag` or `registry/name:tag`. **Checklist:** - [ ] Documentation - [ ] Minium required manager version - [ ] Specific setting for review (eg., KB link, endpoint or how to setup) - [ ] Minimum requirements to check during review - [ ] Test case(s) to demonstrate the difference of before/after
07aff36
to
5e36c40
Compare
resolves #3043 (FR-384) #3044 (FR-382)
Introduces a new
namespace
field for image objects while deprecating the existingname
field. This change affects how image names are constructed throughout the application, particularly in the image installation modal, service launcher, and endpoint detail pages.The image name construction now prioritizes the
namespace
field, falling back toname
when namespace is not available:registry/namespace:tag
orregistry/name:tag
.Checklist: