Sample application to load model from Minio
[demo.git] / vnfs / DAaaS / sample-apps / sample-minio-load-model / values.yaml
1 # Default values for model-loader.
2 # This is a YAML-formatted file.
3 # Declare variables to be passed into your templates.
4
5 replicaCount: 1
6
7 image:
8   repository: dcr.cluster.local:32644/sample-minio-load
9   tag: v3
10   pullPolicy: Always
11
12 nameOverride: ""
13 fullnameOverride: ""
14
15 ## Model repository information (Minio)
16 ## Model repository information (Minio)
17 minio:
18   existingSecret: ""
19   accessKey: "onapdaas"
20   secretKey: "onapsecretdaas"
21   environment:
22     AWS_REGION: "us-west-1"
23     S3_REGION: "us-west-1"
24     S3_ENDPOINT: "minio.edge1.svc.cluster.local:9000"
25     AWS_ENDPOINT_URL: "http://minio.edge1.svc.cluster.local:9000"
26     S3_USE_HTTPS: 0
27     S3_VERIFY_SSL: 0
28     AWS_LOG_LEVEL: 3
29     TF_CPP_MIN_LOG_LEVEL: 3
30     MODEL_BUCKET: "numpy"
31     # List of object files to be loaded given in a , separated list format
32     MODEL_OBJECTS: '["model1.data", "model2.data"]'
33
34 ## Service account for model-loader to use.
35 serviceAccount:
36   create: true
37   name: ""
38
39 resources: {}
40   # We usually recommend not to specify default resources and to leave this as a conscious
41   # choice for the user. This also increases chances charts run on environments with little
42   # resources, such as Minikube. If you do want to specify resources, uncomment the following
43   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
44   # limits:
45   #  cpu: 100m
46   #  memory: 128Mi
47   # requests:
48   #  cpu: 100m
49   #  memory: 128Mi
50
51 nodeSelector: {}
52
53 tolerations: []
54
55 affinity: {}