-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
108 additions
and
14 deletions.
There are no files selected for viewing
8 changes: 8 additions & 0 deletions
8
components/configs/kustomized/rhods-model-instances/kustomization.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,8 @@ | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
|
||
namespace: ds-group-project | ||
|
||
resources: | ||
- openvino | ||
- triton |
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
2 changes: 2 additions & 0 deletions
2
...ustomized/model-server/kustomization.yaml → ...del-instances/openvino/kustomization.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 |
---|---|---|
@@ -1,6 +1,8 @@ | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
|
||
namespace: ds-group-project | ||
|
||
resources: | ||
- inference.yaml | ||
- runtime.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
21 changes: 21 additions & 0 deletions
21
components/configs/kustomized/rhods-model-instances/triton/inference.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,21 @@ | ||
--- | ||
apiVersion: serving.kserve.io/v1beta1 | ||
kind: InferenceService | ||
metadata: | ||
annotations: | ||
openshift.io/display-name: stocks | ||
serving.kserve.io/deploymentMode: ModelMesh | ||
labels: | ||
name: stocks | ||
opendatahub.io/dashboard: "true" | ||
name: triton-stocks | ||
spec: | ||
predictor: | ||
model: | ||
modelFormat: | ||
name: tensorflow | ||
version: "1" | ||
runtime: triton | ||
storage: | ||
key: minio-connection | ||
path: stocks.onnx |
8 changes: 8 additions & 0 deletions
8
components/configs/kustomized/rhods-model-instances/triton/kustomization.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,8 @@ | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
|
||
namespace: ds-group-project | ||
|
||
resources: | ||
- inference.yaml | ||
- runtime.yaml |
54 changes: 54 additions & 0 deletions
54
components/configs/kustomized/rhods-model-instances/triton/runtime.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,54 @@ | ||
--- | ||
apiVersion: serving.kserve.io/v1alpha1 | ||
kind: ServingRuntime | ||
metadata: | ||
annotations: | ||
enable-auth: "false" | ||
enable-route: "false" | ||
opendatahub.io/disable-gpu: "true" | ||
opendatahub.io/template-display-name: OpenVINO Model Server | ||
opendatahub.io/template-name: triton | ||
openshift.io/display-name: trition | ||
labels: | ||
name: triton | ||
opendatahub.io/dashboard: "true" | ||
name: triton | ||
spec: | ||
builtInAdapter: | ||
memBufferBytes: 134217728 | ||
modelLoadingTimeoutMillis: 90000 | ||
runtimeManagementPort: 8888 | ||
serverType: ovms | ||
containers: | ||
- args: | ||
- --port=8001 | ||
- --rest_port=8888 | ||
- --config_path=/models/model_config_list.json | ||
- --file_system_poll_wait_seconds=0 | ||
- --grpc_bind_address=127.0.0.1 | ||
- --rest_bind_address=127.0.0.1 | ||
image: quay.io/opendatahub/openvino_model_server@sha256:20dbfbaf53d1afbd47c612d953984238cb0e207972ed544a5ea662c2404f276d | ||
name: ovms | ||
resources: | ||
limits: | ||
cpu: "2" | ||
memory: 8Gi | ||
requests: | ||
cpu: "1" | ||
memory: 4Gi | ||
grpcDataEndpoint: port:8001 | ||
grpcEndpoint: port:8085 | ||
multiModel: true | ||
protocolVersions: | ||
- grpc-v1 | ||
replicas: 1 | ||
supportedModelFormats: | ||
- autoSelect: true | ||
name: openvino_ir | ||
version: opset1 | ||
- autoSelect: true | ||
name: onnx | ||
version: "1" | ||
- autoSelect: true | ||
name: tensorflow | ||
version: "2" |
File renamed without changes.
2 changes: 2 additions & 0 deletions
2
.../model-serving-runtime/kustomization.yaml → ...d/rhods-model-runtimes/kustomization.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 |
---|---|---|
@@ -1,5 +1,7 @@ | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
|
||
namespace: redhat-ods-applications | ||
|
||
resources: | ||
- triton |
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
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