From 0c77e3415525807ac8ed5f473cfced06bad0ffa3 Mon Sep 17 00:00:00 2001 From: Christian Kadner Date: Fri, 28 Oct 2022 18:46:48 -0700 Subject: [PATCH] Add v0.2.0 tag to pipeline template images Signed-off-by: Christian Kadner --- .../swagger_server/code_templates/serve_kfserving.TEMPLATE.py | 2 +- .../swagger_server/code_templates/serve_knative.TEMPLATE.py | 4 ++-- .../code_templates/serve_kubernetes.TEMPLATE.py | 4 ++-- .../swagger_server/code_templates/train_watsonml.TEMPLATE.py | 2 +- .../code_templates/train_watsonml_w_credentials.TEMPLATE.py | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/api/server/swagger_server/code_templates/serve_kfserving.TEMPLATE.py b/api/server/swagger_server/code_templates/serve_kfserving.TEMPLATE.py index 94e1589c..57f0a6dc 100644 --- a/api/server/swagger_server/code_templates/serve_kfserving.TEMPLATE.py +++ b/api/server/swagger_server/code_templates/serve_kfserving.TEMPLATE.py @@ -32,7 +32,7 @@ def model_pipeline(model_id='${model_identifier}'): model_config = dsl.ContainerOp( name='model_config', - image='tomcli/model-config', + image='mlexchange/model-config:v0.2.0', command=['python'], arguments=[ '-u', 'model-config.py', diff --git a/api/server/swagger_server/code_templates/serve_knative.TEMPLATE.py b/api/server/swagger_server/code_templates/serve_knative.TEMPLATE.py index ab863e44..abbf8ff8 100644 --- a/api/server/swagger_server/code_templates/serve_knative.TEMPLATE.py +++ b/api/server/swagger_server/code_templates/serve_knative.TEMPLATE.py @@ -27,7 +27,7 @@ def model_pipeline(model_id='${model_identifier}'): model_config = dsl.ContainerOp( name='model_config', - image='tomcli/model-config', + image='mlexchange/model-config:v0.2.0', command=['python'], arguments=[ '-u', 'model-config.py', @@ -43,7 +43,7 @@ def model_pipeline(model_id='${model_identifier}'): model_deployment = dsl.ContainerOp( name='knative_model_deployment', - image='aipipeline/knative-model-deploy', + image='mlexchange/knative-model-deploy:v0.2.0', command=['python'], arguments=[ '-u', 'knative_deployment.py', diff --git a/api/server/swagger_server/code_templates/serve_kubernetes.TEMPLATE.py b/api/server/swagger_server/code_templates/serve_kubernetes.TEMPLATE.py index 7f95bd5d..423d1be0 100644 --- a/api/server/swagger_server/code_templates/serve_kubernetes.TEMPLATE.py +++ b/api/server/swagger_server/code_templates/serve_kubernetes.TEMPLATE.py @@ -27,7 +27,7 @@ def model_pipeline(model_id='${model_identifier}'): model_config = dsl.ContainerOp( name='model_config', - image='aipipeline/model-config', + image='mlexchange/model-config:v0.2.0', command=['python'], arguments=[ '-u', 'model-config.py', @@ -42,7 +42,7 @@ def model_pipeline(model_id='${model_identifier}'): model_deployment = dsl.ContainerOp( name='k8s_model_deployment', - image='aipipeline/deployment-k8s-remote', + image='mlexchange/deployment-k8s-remote:v0.2.0', command=['python'], arguments=[ '-u', 'kube_deployment.py', diff --git a/api/server/swagger_server/code_templates/train_watsonml.TEMPLATE.py b/api/server/swagger_server/code_templates/train_watsonml.TEMPLATE.py index ceff86d5..66f70214 100644 --- a/api/server/swagger_server/code_templates/train_watsonml.TEMPLATE.py +++ b/api/server/swagger_server/code_templates/train_watsonml.TEMPLATE.py @@ -31,7 +31,7 @@ def model_pipeline(model_id='${model_identifier}'): model_config = dsl.ContainerOp( name='model_config', - image='tomcli/model-config:latest', + image='mlexchange/model-config:v0.2.0', command=['python'], arguments=[ '-u', 'model-config.py', diff --git a/api/server/swagger_server/code_templates/train_watsonml_w_credentials.TEMPLATE.py b/api/server/swagger_server/code_templates/train_watsonml_w_credentials.TEMPLATE.py index d1df85a8..00cef4b2 100644 --- a/api/server/swagger_server/code_templates/train_watsonml_w_credentials.TEMPLATE.py +++ b/api/server/swagger_server/code_templates/train_watsonml_w_credentials.TEMPLATE.py @@ -32,7 +32,7 @@ def model_pipeline(model_id='${model_identifier}', model_config = dsl.ContainerOp( name='model_config', - image='aipipeline/model-config:latest', + image='mlexchange/model-config:v0.2.0', command=['python'], arguments=[ '-u', 'model-config.py',