forked from kserve/kserve
-
Notifications
You must be signed in to change notification settings - Fork 51
250731 sync kserve/master into odh/master batch2 #810
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
Merged
openshift-merge-bot
merged 14 commits into
opendatahub-io:master
from
mholder6:250731_sync_upstream_batch2
Aug 5, 2025
Merged
Changes from 10 commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
ba60f3e
feat: support secure access to prometheus in keda (#4384)
andyi2it ead02c8
feat: switch kserve from poetry to uv (#4407)
andyi2it 87b21e2
chore(utils): simplifies code using generics (#4578)
bartoszmajsak 7fc93ea
fix: AOT Precompile flashinfer in huggingface image (#4567)
AyushSawant18588 60ac246
feat: improves collection helpers (#4579)
bartoszmajsak 798600b
Add Missing config file for code coverage (#4581)
andyi2it 32772a8
Fix: Support multiple metrics in OpenTelemetryCollector for autoscali…
f502dcc
Upgrade vllm to v0.9.2 (#4586)
AyushSawant18588 782cdc9
Remove unused Strategy interface from sharding package (#4590)
54f2744
synced with upstream batch 2/3
mholder6 1304dd4
updated pyproject to include transformer version
mholder6 9497ecb
updated e2e setup to use uv instead of poetry
mholder6 d6e6f04
rehandled merge conflicts for storage-init.Docker
mholder6 3925c3d
updated the uv.lock file
mholder6 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,53 @@ | ||
| # (mandatory) | ||
| # Path to coverage profile file (output of `go test -coverprofile` command). | ||
| # | ||
| # For cases where there are many coverage profiles, such as when running | ||
| # unit tests and integration tests separately, you can combine all those | ||
| # profiles into one. In this case, the profile should have a comma-separated list | ||
| # of profile files, e.g., 'cover_unit.out,cover_integration.out'. | ||
| profile: coverage.out | ||
|
|
||
| # Holds coverage thresholds percentages, values should be in range [0-100]. | ||
| threshold: | ||
| # (optional; default 0) | ||
| # Minimum coverage percentage required for individual files. | ||
| # file: 70 | ||
|
|
||
| # (optional; default 0) | ||
| # Minimum coverage percentage required for each package. | ||
| # package: 80 | ||
|
|
||
| # (optional; default 0) | ||
| # Minimum overall project coverage percentage required. | ||
| total: 80 | ||
|
|
||
| # Holds regexp rules which will override thresholds for matched files or packages | ||
| # using their paths. | ||
| # | ||
| # First rule from this list that matches file or package is going to apply | ||
| # new threshold to it. If project has multiple rules that match same path, | ||
| # override rules should be listed in order from specific to more general rules. | ||
| # override: | ||
| # # Increase coverage threshold to 100% for `foo` package | ||
| # # (default is 80, as configured above in this example). | ||
| # - path: ^pkg/lib/foo$ | ||
| # threshold: 100 | ||
|
|
||
| # Holds regexp rules which will exclude matched files or packages | ||
| # from coverage statistics. | ||
| exclude: | ||
| # Exclude files or packages matching their paths | ||
| paths: | ||
| - zz_generated.deepcopy.go | ||
| - openapi_generated.go | ||
| - testing | ||
| - pkg\\/client | ||
|
|
||
| # File name of go-test-coverage breakdown file, which can be used to | ||
| # analyze coverage difference. | ||
| breakdown-file-name: '' | ||
|
|
||
| diff: | ||
| # File name of go-test-coverage breakdown file which will be used to | ||
| # report coverage difference. | ||
| base-breakdown-file-name: '' |
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.