Create Helm Instantiation
[aaf/authz.git] / auth / helm / aaf / values.yaml
1 # Default values for aaf.
2 # This is a YAML-formatted file.
3 # Declare variables to be passed into your templates.
4
5 replicaCount: 1
6
7 global:
8   persistence:
9     enabled: true
10   common:
11     namespace: onap
12
13 ingress:
14   enabled: false
15
16 cadi:
17   hostname: "aaf.osaaf.org"
18   cadi_latitude: "38.0"  
19   cadi_longitude: "-72.0"  
20   aaf_env: "DEV"
21   aaf_register_as: "aaf.osaaf.org"
22
23 persistence:
24   mountPath: "/mnt/data/aaf"
25   config:
26     volumeReclaimPolicy: Retain
27     accessMode: ReadWriteOnce
28     size: 2Gi
29     mountSubPath: "config"
30     storageClass: "manual"
31   logs:
32     volumeReclaimPolicy: Retain
33     accessMode: ReadWriteOnce
34     size: 2Gi
35     mountSubPath: "logs"
36     storageClass: "manual"
37   cass:
38     volumeReclaimPolicy: Retain
39     accessMode: ReadWriteOnce
40     size: 10Gi
41     mountSubPath: "cass"
42     storageClass: "manual"
43
44 image:
45   # When using locally built Docker Container, set Repository to ""
46   repository: ""
47   # When using Docker Repo, add, and include trailing "/"
48   # repository: nexus3.onap.org:10003/
49   # repository: localhost:5000/
50   version: 2.1.2-SNAPSHOT
51
52 resources: {}
53   # We usually recommend not to specify default resources and to leave this as a conscious
54   # choice for the user. This also increases chances charts run on environments with little
55   # resources, such as Minikube. If you do want to specify resources, uncomment the following
56   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
57   # limits:
58   #  cpu: 100m
59   #  memory: 128Mi
60   # requests:
61   #  cpu: 100m
62   #  memory: 128Mi
63
64 nodeSelector: {}
65
66 tolerations: []
67
68 affinity: {}