Skip to content

Commit

Permalink
Integrate rock for xgbserver v0.11.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ca-scribner committed Mar 7, 2024
1 parent 5341043 commit ade6e0a
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charms/kserve-controller/src/default-custom-images.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"serving_runtimes__tensorflow_serving": "tensorflow/serving:2.6.2",
"serving_runtimes__torchserve": "pytorch/torchserve-kfs:0.8.2",
"serving_runtimes__tritonserver": "nvcr.io/nvidia/tritonserver:23.05-py3",
"serving_runtimes__xgbserver": "kserve/xgbserver:v0.11.1"
"serving_runtimes__xgbserver": "charmedkubeflow/xgbserver:0.11.2-d1246b8"
}


Expand Down
1 change: 1 addition & 0 deletions charms/kserve-controller/tests/integration/test_charm.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,7 @@ def create_namespace():
"./tests/integration/sklearn-iris.yaml",
"./tests/integration/pmml-server.yaml",
"./tests/integration/paddleserver-resnet.yaml",
"./tests/integration/xgbserver.yaml",
],
)
def test_inference_service_raw_deployment(
Expand Down
19 changes: 19 additions & 0 deletions charms/kserve-controller/tests/integration/xgbserver.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
apiVersion: "serving.kserve.io/v1beta1"
kind: "InferenceService"
metadata:
name: "xgboost-v2-iris"
spec:
predictor:
model:
modelFormat:
name: xgboost
protocolVersion: v2
runtime: kserve-xgbserver
storageUri: "gs://kfserving-examples/models/xgboost/iris"
resources:
limits:
cpu: 1
memory: 500Mi
requests:
cpu: 100m
memory: 250Mi

0 comments on commit ade6e0a

Please sign in to comment.