blob: b84139161e0dc47863a516b4bcb82546b3137cf9 [file] [log] [blame]
Sylvain Desbureaux70070412020-11-09 21:58:48 +01001# Copyright (c) 2018 Amdocs, Bell Canada, AT&T
Sylvain Desbureaux5b651322020-12-07 15:34:15 +01002# Copyright (c) 2020 Nokia, Orange
Sylvain Desbureaux331f0042021-01-18 11:38:49 +01003# Modifications Copyright (c) 2021 Orange
Sylvain Desbureaux70070412020-11-09 21:58:48 +01004#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
17# Default values for resources.
18# This is a YAML-formatted file.
19# Declare variables to be passed into your templates.
20global: # global defaults
21 nodePortPrefix: 302
Sylvain Desbureaux5b651322020-12-07 15:34:15 +010022 cassandra:
23 #Service Name of the cassandra cluster to connect to.
24 #Override it to aai-cassandra if localCluster is enabled.
25 serviceName: cassandra
26
Sylvain Desbureaux5b651322020-12-07 15:34:15 +010027 # Specifies a list of jobs to be run
28 jobs:
29 # When enabled, it will create the schema based on oxm and edge rules
30 createSchema:
31 enabled: true
32 #migration using helm hooks
33 migration:
34 enabled: false
35
36 config:
37 # Specifies that the cluster connected to a dynamic
38 # cluster being spinned up by kubernetes deployment
39 cluster:
40 cassandra:
41 dynamic: true
42
43 # Specifies if the basic authorization is enabled
44 basic:
45 auth:
46 enabled: true
47 username: AAI
48 passwd: AAI
49
50 # Active spring profiles for the resources microservice
51 profiles:
52 active: production,dmaap,aaf-auth
53
54 # Notification event specific properties
55 notification:
56 eventType: AAI-EVENT
57 domain: dev
58
59 # Schema specific properties that include supported versions of api
60 schema:
61 # Specifies if the connection should be one way ssl, two way ssl or no auth
62 service:
63 client: one-way-ssl
64 # Specifies which translator to use if it has schema-service, then it will make a rest request to schema service
65 translator:
66 list: schema-service
67 source:
68 # Specifies which folder to take a look at
69 name: onap
70 uri:
71 # Base URI Path of the application
72 base:
73 path: /aai
74 version:
75 # Current version of the REST API
76 api:
77 default: v21
78 # Specifies which version the depth parameter is configurable
79 depth: v11
80 # List of all the supported versions of the API
81 list: v11,v12,v13,v14,v15,v16,v17,v18,v19,v20,v21
82 # Specifies from which version related link should appear
83 related:
84 link: v11
85 # Specifies from which version the app root change happened
86 app:
87 root: v11
88 # Specifies from which version the xml namespace changed
89 namespace:
90 change: v12
91 # Specifies from which version the edge label appeared in API
92 edge:
93 label: v12
94
Sylvain Desbureaux5b651322020-12-07 15:34:15 +010095 # Specifies which clients should always default to realtime graph connection
96 realtime:
97 clients: SDNC,MSO,SO,robot-ete
Sylvain Desbureaux70070412020-11-09 21:58:48 +010098
Sylvain Desbureaux331f0042021-01-18 11:38:49 +010099api_list:
100 - 11
101 - 12
102 - 13
103 - 14
104 - 15
105 - 16
106 - 17
107 - 18
108 - 19
109
110aai_enpoints:
111 - name: aai-cloudInfrastructure
112 url: cloud-infrastructure
113 - name: aai-business
114 url: business
115 - name: aai-actions
116 url: actions
117 - name: aai-service-design-and-creation
118 url: service-design-and-creation
119 - name: aai-network
120 url: network
121 - name: aai-externalSystem
122 url: external-system
Sylvain Desbureauxb4e038d2020-12-15 12:00:26 +0100123#################################################################
124# Certificate configuration
125#################################################################
126certInitializer:
127 nameOverride: aai-resources-cert-initializer
128 aafDeployFqi: deployer@people.osaaf.org
129 aafDeployPass: demo123456!
130 # aafDeployCredsExternalSecret: some secret
131 fqdn: aai-resources
132 fqi: aai-resources@aai-resources.onap.org
133 public_fqdn: aai-resources.onap.org
134 cadi_longitude: "0.0"
135 cadi_latitude: "0.0"
136 app_ns: org.osaaf.aaf
137 credsPath: /opt/app/osaaf/local
138 fqi_namespace: org.onap.aai-resources
139 aaf_add_config: |
Krzysztof Opasiak58807942021-04-02 08:56:15 +0200140 echo "*** changing them into shell safe ones"
141 export KEYSTORE_PASSWORD=$(tr -cd '[:alnum:]' < /dev/urandom | fold -w64 | head -n1)
142 export TRUSTSTORE_PASSWORD=$(tr -cd '[:alnum:]' < /dev/urandom | fold -w64 | head -n1)
143 cd {{ .Values.credsPath }}
144 keytool -storepasswd -new "${KEYSTORE_PASSWORD}" \
145 -storepass "${cadi_keystore_password_p12}" \
146 -keystore {{ .Values.fqi_namespace }}.p12
147 keytool -storepasswd -new "${TRUSTSTORE_PASSWORD}" \
148 -storepass "${cadi_truststore_password}" \
149 -keystore {{ .Values.fqi_namespace }}.trust.jks
Krzysztof Opasiak58807942021-04-02 08:56:15 +0200150 echo "*** save the generated passwords"
151 echo "KEYSTORE_PASSWORD=${KEYSTORE_PASSWORD}" > mycreds.prop
152 echo "TRUSTSTORE_PASSWORD=${TRUSTSTORE_PASSWORD}" >> mycreds.prop
Sylvain Desbureaux6b83dab2021-02-23 16:03:21 +0100153 echo "*** change ownership of certificates to targeted user"
154 chown -R 1000 {{ .Values.credsPath }}
Sylvain Desbureaux331f0042021-01-18 11:38:49 +0100155
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100156# application image
Harish Venkata Kajur12091182021-02-25 13:21:54 -0500157image: onap/aai-resources:1.8.2
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100158pullPolicy: Always
159restartPolicy: Always
160flavor: small
161flavorOverride: small
162# default number of instances
163replicaCount: 1
164
165# Configuration for the resources deployment
166config:
167 keycloak:
168 host: localhost
169 port: 8180
170
171 # Specifies crud related operation timeouts and overrides
172 crud:
173 timeout:
174 # Specifies if the timeout for REST GET calls should be enabled
175 enabled: true
176 # Specifies the timeout values for application specific
177 # Its a pipe seperated list where each element before comma represents
178 # the X-FromAppId and the comma after specifies the timeout limit in ms
179 # If the timeout limit is -1 then it means for these apps no timeout
180 appspecific: JUNITTESTAPP1,1|JUNITTESTAPP2,-1|DCAE-CCS,-1|DCAES,-1|AAIRctFeed,-1|NewvceCreator,-1|IANewvceCreator,-1|AAI-CSIOVALS,-1
181 # Specifies what is the maximum timeout limit in milliseconds
182 limit: 100000
183
184 # Specifies configuration for bulk apis
185 bulk:
186 # Specifies for a bulk payload how many transactions in total allowed
187 limit: 30
188 # Specifies if the bulk can be override and if it can the value
189 override: false
190
191nodeSelector: {}
192
193affinity: {}
194
195# probe configuration parameters
196liveness:
197 initialDelaySeconds: 60
198 periodSeconds: 60
199 # necessary to disable liveness probe when setting breakpoints
200 # in debugger so K8s doesn't restart unresponsive container
201 enabled: false
202
203readiness:
204 initialDelaySeconds: 60
205 periodSeconds: 10
206
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100207service:
208 type: ClusterIP
209 portName: aai-resources-8447
210 internalPort: 8447
211 portName2: aai-resources-5005
212 internalPort2: 5005
213
214ingress:
215 enabled: false
216
217 # We usually recommend not to specify default resources and to leave this as a conscious
218 # choice for the user. This also increases chances charts run on environments with little
219 # resources, such as Minikube. If you do want to specify resources, uncomment the following
220 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
221 #
222 # Example:
223 # Configure resource requests and limits
224 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
225 # Minimum memory for development is 2 CPU cores and 4GB memory
226 # Minimum memory for production is 4 CPU cores and 8GB memory
227#resources:
228# limits:
229# cpu: 2
230# memory: 4Gi
231# requests:
232# cpu: 2
233# memory: 4Gi
234resources:
235 small:
236 limits:
237 cpu: 2
238 memory: 4Gi
239 requests:
240 cpu: 1
241 memory: 3Gi
242 large:
243 limits:
244 cpu: 4
245 memory: 8Gi
246 requests:
247 cpu: 2
248 memory: 4Gi
249 unlimited: {}