summaryrefslogtreecommitdiffstats
path: root/vnfs/DAaaS/inference-core/charts/tf-serving/values.yaml
blob: ebf88683616d05ab8158248481d6e2617dbb16e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# Default values for tf-serving.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.

replicaCount: 1

image:
  tensorflowServing:
    repository: tensorflow/serving
    tag: latest
  tensorboard:
    repository: tensorflow/tensorflow
    tag: latest
  pullPolicy: IfNotPresent

nameOverride: ""
fullnameOverride: ""

## Model information for tf-serving
modelName: "mnist"
modelBasePath: "s3://models/mnist"

## Model repository information (Minio)
minio:
  existingSecret: ""
  accessKey: "onapdaas"
  secretKey: "onapsecretdaas"
  environment:
    AWS_REGION: ""
    S3_REGION: ""
    S3_ENDPOINT: "minio.minio.svc.cluster.local:9000"
    AWS_ENDPOINT_URL: "http://minio.minio.svc.cluster.local:9000"
    S3_USE_HTTPS: 0
    S3_VERIFY_SSL: 0


## Service account for tf-serving to use.
serviceAccount:
  create: true
  name: ""

service:
  type: ClusterIP
  tensorflowServingPort: 8500
  tensorboardPort: 6006

ingress:
  enabled: false
  annotations: {}
  paths: []
  hosts:
    - chart-example.local
  tls: []

resources: {}
  # We usually recommend not to specify default resources and to leave this as a conscious
  # choice for the user. This also increases chances charts run on environments with little
  # resources, such as Minikube. If you do want to specify resources, uncomment the following
  # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
  # limits:
  #  cpu: 100m
  #  memory: 128Mi
  # requests:
  #  cpu: 100m
  #  memory: 128Mi

nodeSelector: {}

tolerations: []

affinity: {}