From a3331442a2102920cd039c4bf04e9bac0f7358c8 Mon Sep 17 00:00:00 2001 From: Dileep Ranganathan Date: Thu, 28 Mar 2019 11:29:36 -0700 Subject: Inference package with Tensorflow Serving Initial inference package with TF Serving, Tensorboard. Added Minio/S3 support. Change-Id: If896a7c8fc150bf6a552bdcf7d1096d357520751 Issue-ID: ONAPARC-454 Signed-off-by: Dileep Ranganathan --- .../charts/tf-serving/templates/service.yaml | 39 ++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 vnfs/DAaaS/inference-core/charts/tf-serving/templates/service.yaml (limited to 'vnfs/DAaaS/inference-core/charts/tf-serving/templates/service.yaml') diff --git a/vnfs/DAaaS/inference-core/charts/tf-serving/templates/service.yaml b/vnfs/DAaaS/inference-core/charts/tf-serving/templates/service.yaml new file mode 100644 index 00000000..3ddcca66 --- /dev/null +++ b/vnfs/DAaaS/inference-core/charts/tf-serving/templates/service.yaml @@ -0,0 +1,39 @@ +{{/* +# Copyright 2019 Intel Corporation, Inc +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +*/}} + +apiVersion: v1 +kind: Service +metadata: + name: {{ include "tf-serving.fullname" . }} + labels: + app: {{ include "tf-serving.name" . }} + release: {{ .Release.Name }} + modelName: {{ .Values.modelName }} +spec: + type: {{ .Values.service.type }} + ports: + - port: {{ .Values.service.tensorflowServingPort }} + targetPort: tf-serving + protocol: TCP + name: tf-serving + - port: {{ .Values.service.tensorboardPort }} + targetPort: tensorboard + protocol: TCP + name: tensorboard + selector: + app: {{ include "tf-serving.name" . }} + release: {{ .Release.Name }} + modelName: {{ .Values.modelName }} -- cgit 1.2.3-korg