blob: bf1602e3300095ecb51ae3d6e31f1905f27ec7a1 [file] [log] [blame]
vaibhav_16dec0e58a662018-03-22 09:07:12 +00001# Copyright © 2017 Amdocs, Bell Canada
toshrajbhardwaj84d73b12018-08-06 07:35:14 +00002# Modifications Copyright © 2018 AT&T
vaibhav_16dec0e58a662018-03-22 09:07:12 +00003#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
kj6a8ce802018-03-19 15:07:44 +020016# Default values for aai.
17# This is a YAML-formatted file.
18# Declare variables to be passed into your templates.
19global: # global defaults
20 nodePortPrefix: 302
21 repository: nexus3.onap.org:10001
kj6a8ce802018-03-19 15:07:44 +020022 dockerhubRepository: docker.io
23 busyboxImage: busybox
Kajur, Harish (vk250x)41a435d2018-09-06 14:44:40 -040024
kj6a8ce802018-03-19 15:07:44 +020025 readinessRepository: oomk8s
BorislavGf2b49662018-04-15 11:55:39 +000026 readinessImage: readiness-check:2.0.0
Kajur, Harish (vk250x)41a435d2018-09-06 14:44:40 -040027
kj6a8ce802018-03-19 15:07:44 +020028 loggingRepository: docker.elastic.co
29 loggingImage: beats/filebeat:5.5.0
Kajur, Harish (vk250x)41a435d2018-09-06 14:44:40 -040030
kj6a8ce802018-03-19 15:07:44 +020031 restartPolicy: Always
Kajur, Harish (vk250x)41a435d2018-09-06 14:44:40 -040032
vagrant62ddc7d2018-03-10 23:56:32 +000033 cassandra:
Keren Joseph29f11ab2018-04-22 15:22:46 +030034 serviceName: aai-cassandra
vagrant62ddc7d2018-03-10 23:56:32 +000035 replicas: 3
Kajur, Harish (vk250x)41a435d2018-09-06 14:44:40 -040036
Keren Joseph29f11ab2018-04-22 15:22:46 +030037 aai:
BorislavGdd207052018-05-22 11:31:39 +000038 serviceName: aai
Keren Joseph29f11ab2018-04-22 15:22:46 +030039 babel:
40 serviceName: aai-babel
41 champ:
42 serviceName: aai-champ
43 aaiElasticsearch:
44 serviceName: aai-elasticsearch
Keren Joseph29f11ab2018-04-22 15:22:46 +030045 resources:
46 serviceName: aai-resources
47 sparkyBe:
48 serviceName: aai-sparky-be
49 dataRouter:
50 serviceName: aai-data-router
51 gizmo:
52 serviceName: aai-gizmo
53 modelloader:
54 serviceName: aai-modelloader
55 searchData:
56 serviceName: aai-search-data
57 traversal:
58 serviceName: aai-traversal
Kajur, Harish (vk250x)41a435d2018-09-06 14:44:40 -040059 graphadmin:
60 serviceName: aai-graphadmin
Michael Arrastia0e102f62018-08-21 13:36:27 +010061 spike:
62 serviceName: aai-spike
Keren Joseph29f11ab2018-04-22 15:22:46 +030063
Kajur, Harish (vk250x)41a435d2018-09-06 14:44:40 -040064 initContainers:
65 enabled: true
66 # Specifies a list of jobs to be run
67 jobs:
68 # When enabled, it will create the schema based on oxm and edge rules
69 createSchema:
70 enabled: true
71 # When enabled, it will create the widget models via REST API to haproxy
72 updateQueryData:
73 enabled: true
74
75 # Common configuration for resources traversal and graphadmin
76 config:
77 # User information for the admin user in container
78 userId: 1000
79 groupId: 1000
80
81 # Specifies that the cluster connected to a dynamic
82 # cluster being spinned up by kubernetes deployment
83 cluster:
84 cassandra:
85 dynamic: true
86
87 # If cluster.cassandra.dynamic is set to false
88 # Then the following configuration should be uncommented
89 # This is if you are planning to connect to a existing
90 # Cassandra cluster instead of doing the deployment
91 #storage:
92 # backend: cassandra
93 # hostname: somehost1,somehost2,somehost3
94 # connectionTimeout: 100000
95 # cacheSize: 1000000
96 # clusterName: someClusterName
97 # localDataCenter: someDataCenter
98 # keyConsistent: true
99 # # If backend is cql or cassandra it should be keyspace name
100 # # else backend is hbase it should be hbase table name
101 # name: your_hbase_table_or_keyspace_name
102
103 # # CQL driver specific properties for janusgraph
104 # cql:
105 # # Name of the Cassandra Cluster
106 # cluster: someclustername
107 # readConsistency: QUORUM
108 # writeConsistency: QUORUM
109 # replicationFactor: 3
110 # localConsistencyForSysOps: true
111
112 # # Cassandra driver specific properties for janusgraph
113 # cassandra:
114 # # Name of the Cassandra Cluster
115 # cluster: someclustername
116 # readConsistency: LOCAL_QUORUM
117 # writeConsistency: LOCAL_QUORUM
118 # replicationFactor: 3
119
120 # Specifies if the basic authorization is enabled
121 basic:
122 auth:
123 enabled: true
124 username: AAI
125 passwd: AAI
126
127 # Active spring profiles for the resources microservice
128 profiles:
129 active: production,dmaap,one-way-ssl
130
131 # Notification event specific properties
132 notification:
133 eventType: AAI-EVENT
134 domain: dev
135
136 # Schema specific properties that include supported versions of api
137 schema:
138 source:
139 # Specifies which folder to take a look at
140 name: onap
141 uri:
142 # Base URI Path of the application
143 base:
144 path: /aai
145 version:
146 # Current version of the REST API
147 api:
148 default: v14
149 # Specifies which version the depth parameter is configurable
150 depth: v9
151 # List of all the supported versions of the API
152 list: v8,v9,v10,v11,v12,v13,v14
153 # Specifies from which version related link should appear
154 related:
155 link: v10
156 # Specifies from which version the app root change happened
157 app:
158 root: v11
159 # Specifies from which version the xml namespace changed
160 namespace:
161 change: v12
162 # Specifies from which version the edge label appeared in API
163 edge:
164 label: v12
165
166 # Keystore configuration password and filename
167 keystore:
168 filename: aai_keystore
169 passwd: OBF:1vn21ugu1saj1v9i1v941sar1ugw1vo0
170
171 # Truststore configuration password and filename
172 truststore:
173 filename: aai_keystore
174 passwd: OBF:1vn21ugu1saj1v9i1v941sar1ugw1vo0
175
176 # Specifies a list of files to be included in auth volume
177 auth:
178 files:
179 - aai_keystore
180
181 # Specifies which clients should always default to realtime graph connection
182 realtime:
183 clients: SDNC,MSO,SO,robot-ete
184
185 # Logback debug enabled
186 logback:
187 console:
188 # If enabled, container will print all logback to standard output
189 # This will make debugging much easier but it should only be done
190 # when debugging the issue and changed back as it can affect performance
191 # since when this is enabled, it prints a lot of information to console
192 enabled: false
kj6a8ce802018-03-19 15:07:44 +0200193
194# application image
195dockerhubRepository: registry.hub.docker.com
Jimmy Forsyth3b113d22018-06-08 14:30:27 -0400196image: aaionap/haproxy:1.2.4
kerenj3db4be52017-08-24 11:32:22 +0000197pullPolicy: Always
Alexis de Talhouëtd97a78c2017-12-11 08:36:25 -0500198
rajeshkalai442b8f02018-09-18 16:55:39 -0400199flavor: small
200
kj6a8ce802018-03-19 15:07:44 +0200201# flag to enable debugging - application support required
202debugEnabled: false
Jerome Doucerain9e5c7572018-03-17 14:18:41 -0400203
kj6a8ce802018-03-19 15:07:44 +0200204# application configuration
BorislavGe3b6f912018-03-25 18:12:38 +0300205config:
206 logstashServiceName: log-ls
207 logstashPort: 5044
208
kj6a8ce802018-03-19 15:07:44 +0200209# default number of instances
210replicaCount: 1
211
212nodeSelector: {}
213
214affinity: {}
215
216# probe configuration parameters
217liveness:
218 initialDelaySeconds: 10
219 periodSeconds: 10
220 # necessary to disable liveness probe when setting breakpoints
221 # in debugger so K8s doesn't restart unresponsive container
222 enabled: true
223
224readiness:
225 initialDelaySeconds: 10
226 periodSeconds: 10
227
228service:
229 type: NodePort
BorislavGdd207052018-05-22 11:31:39 +0000230 portName: aai
kj6a8ce802018-03-19 15:07:44 +0200231 externalPort: 8080
232 internalPort: 8080
233 nodePort: 32
BorislavGdd207052018-05-22 11:31:39 +0000234 portName2: aai-ssl
kj6a8ce802018-03-19 15:07:44 +0200235 externalPort2: 8443
236 internalPort2: 8443
237 nodePort2: 33
BorislavGdd207052018-05-22 11:31:39 +0000238 # POLICY hotfix - Note this must be temporary
239 # See https://jira.onap.org/browse/POLICY-510
240 aaiServiceClusterIp:
kj6a8ce802018-03-19 15:07:44 +0200241
242ingress:
243 enabled: false
244
rajeshkalai442b8f02018-09-18 16:55:39 -0400245resources:
246 small:
247 limits:
248 cpu: 2
249 memory: 4Gi
250 requests:
Mandeep Khinda654dbb52018-09-19 23:56:37 +0000251 cpu: 1
252 memory: 1Gi
rajeshkalai442b8f02018-09-18 16:55:39 -0400253 large:
254 limits:
255 cpu: 4
256 memory: 8Gi
257 requests:
Mandeep Khinda654dbb52018-09-19 23:56:37 +0000258 cpu: 2
259 memory: 2Gi
Mandeep Khinda9a46bf32018-09-24 15:15:48 +0000260 unlimited: {}