Files
deprecated-helm-charts/stable/tensorflow-serving/values.yaml
T
cheyangandk8s-ci-robot d4aff856e8 [stable/tensorflow-serving] generic tensorflow model server support (#4279)
* [incubator/tensorflow-serving] generic tensorflow model server support

fix according to review comments

support when not having pvc, make the e2e testing pass

helm create with 2.8.1

* fix app name

* make port not configurable

* add named port

* move to stable

* update named port in service

* add named port to tcp check

* fix reference to stable
2018-04-08 10:45:09 -07:00

43 lines
880 B
YAML

# Default values for tensorflow-serving.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
## Kubernetes configuration
## support NodePort, LoadBalancer
##
serviceType: LoadBalancer
## expose the service to the grpc client
port: 9090
replicas: 1
# repository: "cheyang/tf-model-server-gpu"
image:
repository: "cheyang/tf-model-server"
tag: "1.4"
pullPolicy: "IfNotPresent"
resources: {}
# limits:
# cpu: 1.0
# memory: 512Mi
# nvidia.com/gpu: 1
# requests:
# cpu: 1.0
# memory: 512Mi
# nvidia.com/gpu: 1
## The command and args to run the pod
modelName: "inception"
modelBasePath: "/serving/inception-export"
## the mount path inside the container
# mountPath: /serving/inception-export
persistence:
enabled: true
storageClass: ""
size: 10Gi
accessMode: ReadWriteOnce
# matchLabels: {}