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