Clean DB Shutdown status
[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
29 services:
30   ns: "onap"
31   aaf_env: "DEV"
32   public_fqdn: "aaf.osaaf.org"
33   cadi_latitude: "38.0"  
34   cadi_longitude: "-72.0"  
35   cass:
36     replicas: 1
37     cluster_name: "osaaf"
38     heap_new_size: "512M"
39     max_heap_size: "1024M"
40     storage_port: 7000
41     ssl_storage_port: 7001
42     native_trans_port: 9042
43     rpc_port: 9160
44     dc: "dc1"
45   service:
46     replicas: 1
47     fqdn: "aaf-service"
48     internal_port: 8100
49     public_port: 30080
50   locate:
51     replicas: 1
52     fqdn: "aaf-locate"
53     internal_port: 8095
54     public_port: 30081
55   oauth:
56     replicas: 1
57     fqdn: "aaf-oauth"
58     internal_port: 8140
59     public_port: 30082
60   cm:
61     replicas: 1
62     fqdn: "aaf-cm"
63     internal_port: 8150
64     public_port: 30084
65   gui:
66     replicas: 1
67     fqdn: "aaf-gui"
68     internal_port: 8200
69     public_port: 30083
70   fs:
71     replicas: 1
72     fqdn: "aaf-fs"
73     internal_port: 8096
74     public_port: 30085
75     
76 persistence:
77   # Note: Minikube will persist to /data on your host machine
78   mountPath: "/data/aaf"
79   cass:
80     volumeReclaimPolicy: Retain
81     accessMode: ReadWriteOnce
82     size: 10Gi
83     mountSubPath: "cass"
84     storageClass: "manual"
85   status:
86     volumeReclaimPolicy: Delete
87     accessMode: ReadWriteOnce
88     size: 10M
89     mountSubPath: "status"
90     storageClass: "manual"
91   config:
92     volumeReclaimPolicy: Retain
93     accessMode: ReadWriteOnce
94     size: 2Gi
95     mountSubPath: "config"
96     storageClass: "manual"
97   hello:
98     volumeReclaimPolicy: Retain
99     accessMode: ReadWriteOnce
100     size: 1Gi
101     mountSubPath: "config"
102     storageClass: "manual"
103
104 image:
105   # When using locally built Docker Container, set Repository to ""
106   repository: ""
107   # When using Docker Repo, add, and include trailing "/"
108   # repository: nexus3.onap.org:10003/
109   # repository: localhost:5000/
110   version: 2.1.11-SNAPSHOT
111
112 resources: {}
113   # We usually recommend not to specify default resources and to leave this as a conscious
114   # choice for the user. This also increases chances charts run on environments with little
115   # resources, such as Minikube. If you do want to specify resources, uncomment the following
116   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
117   # limits:
118   #  cpu: 100m
119   #  memory: 128Mi
120   # requests:
121   #  cpu: 100m
122   #  memory: 128Mi
123
124 nodeSelector: {}
125
126 tolerations: []
127
128 affinity: {}