Skip to content

Commit

Permalink
Update cypress test for custom serving runtime file
Browse files Browse the repository at this point in the history
  • Loading branch information
ppadti committed Mar 21, 2024
1 parent c3756de commit c53c76b
Show file tree
Hide file tree
Showing 5 changed files with 358 additions and 42 deletions.
45 changes: 45 additions & 0 deletions frontend/src/__mocks__/mock-custom-serving-runtime-add.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
apiVersion: serving.kserve.io/v1alpha1
kind: ServingRuntime
metadata:
name: template-new
annotations:
openshift.io/display-name: 'New OVMS Server'
labels:
opendatahub.io/dashboard: 'true'
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:c89f76386bc8b59f0748cf173868e5beef21ac7d2f78dada69089c4d37c44116
name: ovms
resources:
limits:
cpu: '0'
memory: 0Gi
requests:
cpu: '0'
memory: 0Gi
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'
44 changes: 44 additions & 0 deletions frontend/src/__mocks__/mock-custom-serving-runtime-edit.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
apiVersion: serving.kserve.io/v1alpha1
kind: ServingRuntime
metadata:
name: template-1
annotations:
openshift.io/display-name: Updated Multi Platform
labels:
opendatahub.io/dashboard: 'true'
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
- --target_device=NVIDIA
image: quay.io/modh/openvino-model-server@sha256:c89f76386bc8b59f0748cf173868e5beef21ac7d2f78dada69089c4d37c44116
name: ovms
resources:
limits:
cpu: '0'
memory: 0Gi
requests:
cpu: '0'
memory: 0Gi
grpcDataEndpoint: port:8001
grpcEndpoint: port:8085
multiModel: true
protocolVersions:
- grpc-v1
supportedModelFormats:
- autoSelect: true
name: openvino_ir
version: opset1
- autoSelect: true
name: onnx
version: '1'
Loading

0 comments on commit c53c76b

Please sign in to comment.