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