Skip to content

Commit 8176655

Browse files
committed
Add IMAGE_ONNX_SERVE to configmap
1 parent 7a170e7 commit 8176655

File tree

7 files changed

+10
-9
lines changed

7 files changed

+10
-9
lines changed

examples/iris/cortex.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,24 +8,24 @@
88

99
- kind: api
1010
name: pytorch
11-
model_format: onnx
12-
request_handler: pytorch/request_handler.py
1311
model: s3://cortex-examples/iris/pytorch.onnx
12+
model_format: onnx
13+
request_handler: pytorch/handler.py
1414

1515
- kind: api
1616
name: xgboost
17-
model_format: onnx
18-
request_handler: xgboost/request_handler.py
1917
model: s3://cortex-examples/iris/xgboost.onnx
18+
model_format: onnx
19+
request_handler: xgboost/handler.py
2020

2121
- kind: api
2222
name: sklearn
23-
model_format: onnx
24-
request_handler: sklearn/request_handler.py
2523
model: s3://cortex-examples/iris/sklearn.onnx
24+
model_format: onnx
25+
request_handler: sklearn/handler.py
2626

2727
- kind: api
2828
name: keras
29-
model_format: onnx
30-
request_handler: keras/request_handler.py
3129
model: s3://cortex-examples/iris/keras.onnx
30+
model_format: onnx
31+
request_handler: keras/handler.py
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

manager/install_cortex.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ function setup_configmap() {
6363
--from-literal='IMAGE_SPARK'=$CORTEX_IMAGE_SPARK \
6464
--from-literal='IMAGE_TF_TRAIN'=$CORTEX_IMAGE_TF_TRAIN \
6565
--from-literal='IMAGE_TF_SERVE'=$CORTEX_IMAGE_TF_SERVE \
66+
--from-literal='IMAGE_ONNX_SERVE'=$CORTEX_IMAGE_ONNX_SERVE \
6667
--from-literal='IMAGE_TF_API'=$CORTEX_IMAGE_TF_API \
6768
--from-literal='IMAGE_PYTHON_PACKAGER'=$CORTEX_IMAGE_PYTHON_PACKAGER \
6869
--from-literal='IMAGE_TF_TRAIN_GPU'=$CORTEX_IMAGE_TF_TRAIN_GPU \

manager/install_eks.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
set -e
1818

19-
echo -e "Spinning up the cluster ... (this will take about 15 minutes)\n"
19+
echo -e "\nSpinning up the cluster ... (this will take about 15 minutes)\n"
2020

2121
eksctl create cluster --name=$CORTEX_CLUSTER \
2222
--region=$CORTEX_REGION \

0 commit comments

Comments
 (0)