-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
KF 5328 integrate paddleserver rock (#219)
* update README.md to reduce maintenance This edits README.md to point at the source of truth for default images rather than having it written a second time in the README.md, removing the need to keep the readme up to date as well as reducing the chance for error. * integrate paddleserver rock for 0.11.2 * fix: use correct paddle image, remove extra namespace
- Loading branch information
1 parent
3f606c0
commit cf5c37e
Showing
5 changed files
with
25 additions
and
24 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
|
@@ -3,3 +3,4 @@ | |
*.tox | ||
build/ | ||
.vscode | ||
.python-version |
This file contains 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 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
17 changes: 17 additions & 0 deletions
17
charms/kserve-controller/tests/integration/paddleserver-resnet.yaml
This file contains 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,17 @@ | ||
apiVersion: "serving.kserve.io/v1beta1" | ||
kind: "InferenceService" | ||
metadata: | ||
name: "paddle-resnet50" | ||
spec: | ||
predictor: | ||
model: | ||
modelFormat: | ||
name: paddle | ||
storageUri: "gs://kfserving-examples/models/paddle/resnet" | ||
resources: | ||
limits: | ||
cpu: 1 | ||
memory: 500Mi | ||
requests: | ||
cpu: 100m | ||
memory: 250Mi |
This file contains 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