forked from kserve/kserve
-
Notifications
You must be signed in to change notification settings - Fork 51
250717 sync master #752
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
spolti:250717_sync_master
Jul 23, 2025
Merged
250717 sync master #752
Changes from 11 commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
40806a7
[API] Define LLMInferenceService and LLMInferenceServiceConfig types …
pierDipi ce43040
Stop and Resume a transformer (#4534)
hdefazio b1bae1b
Allow OCI for multi-node/multi-gpu (#4441)
israel-hdez 9e55d59
feat: Store Inference logging to blob storage (#4473)
cjohannsen-cloudera 2f338a6
Fix outdated BentoML import in sample code (BentoService no longer av…
YehCC52 a070e2c
Auto-update annotation for isvc. (#4342)
andresllh fba4113
Stop and resume an explainer (#4546)
hdefazio 178235a
fix: unset clampMax and clampMin, since they are not for replicas (#4…
3208aa7
Merge KServe/master into ODH/master
spolti cd65275
Update golang to 1.24
spolti 767a0f9
updated Makefile and .flake8 to ignore dirs/make precommit/generate
mholder6 afb2f11
updated Makefile to ignore dirs/make precommit/generate
mholder6 efecad2
Do not register ClusterServingRuntime
spolti a843f5f
Merge branch 'master' into 250717_sync_master
spolti 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
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
32 changes: 32 additions & 0 deletions
32
charts/kserve-crd-minimal/templates/serving.kserve.io_llminferenceserviceconfigs.yaml
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,32 @@ | ||
| apiVersion: apiextensions.k8s.io/v1 | ||
| kind: CustomResourceDefinition | ||
| metadata: | ||
| annotations: | ||
| controller-gen.kubebuilder.io/version: v0.16.2 | ||
| name: llminferenceserviceconfigs.serving.kserve.io | ||
| spec: | ||
| group: serving.kserve.io | ||
| names: | ||
| kind: LLMInferenceServiceConfig | ||
| listKind: LLMInferenceServiceConfigList | ||
| plural: llminferenceserviceconfigs | ||
| singular: llminferenceserviceconfig | ||
| scope: Namespaced | ||
| versions: | ||
| - name: v1alpha1 | ||
| schema: | ||
| openAPIV3Schema: | ||
| properties: | ||
| apiVersion: | ||
| type: string | ||
| kind: | ||
| type: string | ||
| metadata: | ||
| type: object | ||
| spec: | ||
| type: object | ||
| x-kubernetes-map-type: atomic | ||
| x-kubernetes-preserve-unknown-fields: true | ||
| type: object | ||
| served: true | ||
| storage: true |
57 changes: 57 additions & 0 deletions
57
charts/kserve-crd-minimal/templates/serving.kserve.io_llminferenceservices.yaml
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,57 @@ | ||
| apiVersion: apiextensions.k8s.io/v1 | ||
| kind: CustomResourceDefinition | ||
| metadata: | ||
| annotations: | ||
| controller-gen.kubebuilder.io/version: v0.16.2 | ||
| name: llminferenceservices.serving.kserve.io | ||
| spec: | ||
| group: serving.kserve.io | ||
| names: | ||
| kind: LLMInferenceService | ||
| listKind: LLMInferenceServiceList | ||
| plural: llminferenceservices | ||
| shortNames: | ||
| - llmisvc | ||
| singular: llminferenceservice | ||
| scope: Namespaced | ||
| versions: | ||
| - additionalPrinterColumns: | ||
| - jsonPath: .status.url | ||
| name: URL | ||
| type: string | ||
| - jsonPath: .status.conditions[?(@.type=='Ready')].status | ||
| name: Ready | ||
| type: string | ||
| - jsonPath: .status.conditions[?(@.type=='Ready')].reason | ||
| name: Reason | ||
| type: string | ||
| - jsonPath: .metadata.creationTimestamp | ||
| name: Age | ||
| type: date | ||
| - jsonPath: .status.addresses[*].url | ||
| name: URLs | ||
| priority: 1 | ||
| type: string | ||
| name: v1alpha1 | ||
| schema: | ||
| openAPIV3Schema: | ||
| properties: | ||
| apiVersion: | ||
| type: string | ||
| kind: | ||
| type: string | ||
| metadata: | ||
| type: object | ||
| spec: | ||
| type: object | ||
| x-kubernetes-map-type: atomic | ||
| x-kubernetes-preserve-unknown-fields: true | ||
| status: | ||
| type: object | ||
| x-kubernetes-map-type: atomic | ||
| x-kubernetes-preserve-unknown-fields: true | ||
| type: object | ||
| served: true | ||
| storage: true | ||
| subresources: | ||
| status: {} |
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.