Refine Helm Client Charts
[aaf/authz.git] / auth / helm / aaf / values.yaml
1 #########
2 ##  ============LICENSE_START====================================================
3 ##  org.onap.aaf
4 ##  ===========================================================================
5 ##  Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
6 ##  ===========================================================================
7 ##  Licensed under the Apache License, Version 2.0 (the "License");
8 ##  you may not use this file except in compliance with the License.
9 ##  You may obtain a copy of the License at
10 ##
11 ##       http://www.apache.org/licenses/LICENSE-2.0
12 ##
13 ##  Unless required by applicable law or agreed to in writing, software
14 ##  distributed under the License is distributed on an "AS IS" BASIS,
15 ##  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 ##  See the License for the specific language governing permissions and
17 ##  limitations under the License.
18 ##  ============LICENSE_END====================================================
19 ##
20 #
21 # Default values for aaf.
22 # This is a YAML-formatted file.
23 # Declare variables to be passed into your templates.
24
25 global:
26   persistence:
27     enabled: true
28   common:
29     namespace: "onap"
30
31 replicas:
32   cass: 1
33   service: 1
34   locator: 1
35   oauth: 1
36   cm: 1
37   gui: 1
38
39 ingress:
40   enabled: false
41
42 cadi:
43   public_fqdn: "aaf.osaaf.org"
44   cadi_latitude: "38.0"  
45   cadi_longitude: "-72.0"  
46   aaf_env: "DEV"
47
48 persistence:
49   # Note: Minikube will persist to /data on your host machine
50   mountPath: "/data/aaf"
51   cass:
52     volumeReclaimPolicy: Retain
53     accessMode: ReadWriteOnce
54     size: 10Gi
55     mountSubPath: "cass"
56     storageClass: "manual"
57   status:
58     volumeReclaimPolicy: Delete
59     accessMode: ReadWriteOnce
60     size: 10M
61     mountSubPath: "status"
62     storageClass: "manual"
63   config:
64     volumeReclaimPolicy: Retain
65     accessMode: ReadWriteOnce
66     size: 2Gi
67     mountSubPath: "config"
68     storageClass: "manual"
69   hello:
70     volumeReclaimPolicy: Retain
71     accessMode: ReadWriteOnce
72     size: 1Gi
73     mountSubPath: "config"
74     storageClass: "manual"
75
76 image:
77   # When using locally built Docker Container, set Repository to ""
78   repository: ""
79   # When using Docker Repo, add, and include trailing "/"
80   # repository: nexus3.onap.org:10003/
81   # repository: localhost:5000/
82   version: 2.1.11-SNAPSHOT
83
84 resources: {}
85   # We usually recommend not to specify default resources and to leave this as a conscious
86   # choice for the user. This also increases chances charts run on environments with little
87   # resources, such as Minikube. If you do want to specify resources, uncomment the following
88   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
89   # limits:
90   #  cpu: 100m
91   #  memory: 128Mi
92   # requests:
93   #  cpu: 100m
94   #  memory: 128Mi
95
96 nodeSelector: {}
97
98 tolerations: []
99
100 affinity: {}