Collectd operator utilties
[demo.git] / vnfs / DAaaS / inference-core / charts / tf-serving / values.yaml
1 # Default values for tf-serving.
2 # This is a YAML-formatted file.
3 # Declare variables to be passed into your templates.
4
5 replicaCount: 1
6
7 image:
8   tensorflowServing:
9     repository: tensorflow/serving
10     tag: latest
11   tensorboard:
12     repository: tensorflow/tensorflow
13     tag: latest
14   pullPolicy: IfNotPresent
15
16 nameOverride: ""
17 fullnameOverride: ""
18
19 ## Model information for tf-serving
20 modelName: "mnist"
21 modelBasePath: "s3://models/mnist"
22
23 ## Model repository information (Minio)
24 minio:
25   existingSecret: ""
26   accessKey: "onapdaas"
27   secretKey: "onapsecretdaas"
28   environment:
29     AWS_REGION: ""
30     S3_REGION: ""
31     S3_ENDPOINT: "minio.minio.svc.cluster.local:9000"
32     AWS_ENDPOINT_URL: "http://minio.minio.svc.cluster.local:9000"
33     S3_USE_HTTPS: 0
34     S3_VERIFY_SSL: 0
35
36
37 ## Service account for tf-serving to use.
38 serviceAccount:
39   create: true
40   name: ""
41
42 service:
43   type: ClusterIP
44   tensorflowServingPort: 8500
45   tensorboardPort: 6006
46
47 ingress:
48   enabled: false
49   annotations: {}
50   paths: []
51   hosts:
52     - chart-example.local
53   tls: []
54
55 resources: {}
56   # We usually recommend not to specify default resources and to leave this as a conscious
57   # choice for the user. This also increases chances charts run on environments with little
58   # resources, such as Minikube. If you do want to specify resources, uncomment the following
59   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
60   # limits:
61   #  cpu: 100m
62   #  memory: 128Mi
63   # requests:
64   #  cpu: 100m
65   #  memory: 128Mi
66
67 nodeSelector: {}
68
69 tolerations: []
70
71 affinity: {}