blob: e244e767536cc0031e7eca5f76b4d0eeef0e8c63 [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
osk1146127fd7d82021-06-18 00:51:17 +020036 aafEnabled: false
37
Sylvain Desbureaux5b651322020-12-07 15:34:15 +010038 config:
39 # Specifies that the cluster connected to a dynamic
40 # cluster being spinned up by kubernetes deployment
41 cluster:
42 cassandra:
43 dynamic: true
44
45 # Specifies if the basic authorization is enabled
46 basic:
47 auth:
48 enabled: true
49 username: AAI
50 passwd: AAI
51
52 # Active spring profiles for the resources microservice
53 profiles:
osk1146127fd7d82021-06-18 00:51:17 +020054 # aaf-auth profile will be automatically set if aaf enabled is set to true
55 active: production,dmaap #,aaf-auth
Sylvain Desbureaux5b651322020-12-07 15:34:15 +010056
57 # Notification event specific properties
58 notification:
59 eventType: AAI-EVENT
60 domain: dev
61
62 # Schema specific properties that include supported versions of api
63 schema:
64 # Specifies if the connection should be one way ssl, two way ssl or no auth
65 service:
66 client: one-way-ssl
67 # Specifies which translator to use if it has schema-service, then it will make a rest request to schema service
68 translator:
69 list: schema-service
70 source:
71 # Specifies which folder to take a look at
72 name: onap
73 uri:
74 # Base URI Path of the application
75 base:
76 path: /aai
77 version:
78 # Current version of the REST API
79 api:
80 default: v21
81 # Specifies which version the depth parameter is configurable
82 depth: v11
83 # List of all the supported versions of the API
84 list: v11,v12,v13,v14,v15,v16,v17,v18,v19,v20,v21
85 # Specifies from which version related link should appear
86 related:
87 link: v11
88 # Specifies from which version the app root change happened
89 app:
90 root: v11
91 # Specifies from which version the xml namespace changed
92 namespace:
93 change: v12
94 # Specifies from which version the edge label appeared in API
95 edge:
96 label: v12
97
Sylvain Desbureaux5b651322020-12-07 15:34:15 +010098 # Specifies which clients should always default to realtime graph connection
99 realtime:
100 clients: SDNC,MSO,SO,robot-ete
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100101
Sylvain Desbureaux331f0042021-01-18 11:38:49 +0100102api_list:
103 - 11
104 - 12
105 - 13
106 - 14
107 - 15
108 - 16
109 - 17
110 - 18
111 - 19
112
113aai_enpoints:
114 - name: aai-cloudInfrastructure
115 url: cloud-infrastructure
116 - name: aai-business
117 url: business
118 - name: aai-actions
119 url: actions
120 - name: aai-service-design-and-creation
121 url: service-design-and-creation
122 - name: aai-network
123 url: network
124 - name: aai-externalSystem
125 url: external-system
Sylvain Desbureauxb4e038d2020-12-15 12:00:26 +0100126#################################################################
127# Certificate configuration
128#################################################################
129certInitializer:
130 nameOverride: aai-resources-cert-initializer
131 aafDeployFqi: deployer@people.osaaf.org
132 aafDeployPass: demo123456!
133 # aafDeployCredsExternalSecret: some secret
134 fqdn: aai-resources
135 fqi: aai-resources@aai-resources.onap.org
136 public_fqdn: aai-resources.onap.org
137 cadi_longitude: "0.0"
138 cadi_latitude: "0.0"
139 app_ns: org.osaaf.aaf
140 credsPath: /opt/app/osaaf/local
141 fqi_namespace: org.onap.aai-resources
142 aaf_add_config: |
Krzysztof Opasiak58807942021-04-02 08:56:15 +0200143 echo "*** changing them into shell safe ones"
144 export KEYSTORE_PASSWORD=$(tr -cd '[:alnum:]' < /dev/urandom | fold -w64 | head -n1)
145 export TRUSTSTORE_PASSWORD=$(tr -cd '[:alnum:]' < /dev/urandom | fold -w64 | head -n1)
146 cd {{ .Values.credsPath }}
147 keytool -storepasswd -new "${KEYSTORE_PASSWORD}" \
148 -storepass "${cadi_keystore_password_p12}" \
149 -keystore {{ .Values.fqi_namespace }}.p12
150 keytool -storepasswd -new "${TRUSTSTORE_PASSWORD}" \
151 -storepass "${cadi_truststore_password}" \
152 -keystore {{ .Values.fqi_namespace }}.trust.jks
Krzysztof Opasiak58807942021-04-02 08:56:15 +0200153 echo "*** save the generated passwords"
154 echo "KEYSTORE_PASSWORD=${KEYSTORE_PASSWORD}" > mycreds.prop
155 echo "TRUSTSTORE_PASSWORD=${TRUSTSTORE_PASSWORD}" >> mycreds.prop
Sylvain Desbureaux6b83dab2021-02-23 16:03:21 +0100156 echo "*** change ownership of certificates to targeted user"
157 chown -R 1000 {{ .Values.credsPath }}
Sylvain Desbureaux331f0042021-01-18 11:38:49 +0100158
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100159# application image
Harish Venkata Kajur12091182021-02-25 13:21:54 -0500160image: onap/aai-resources:1.8.2
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100161pullPolicy: Always
162restartPolicy: Always
163flavor: small
164flavorOverride: small
165# default number of instances
166replicaCount: 1
M.Hosnidokht09523be2021-08-24 09:00:42 -0400167# the minimum number of seconds that a newly created Pod should be ready
168minReadySeconds: 30
169updateStrategy:
170 type: RollingUpdate
171 # The number of pods that can be unavailable during the update process
172 maxUnavailable: 0
173 # The number of pods that can be created above the desired amount of pods during an update
174 maxSurge: 1
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100175
176# Configuration for the resources deployment
177config:
roger yuana08006e2021-04-20 09:20:38 -0600178 # configure keycloak according to your environment.
179 # don't forget to add keycloak in active profiles above (global.config.profiles)
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100180 keycloak:
roger yuana08006e2021-04-20 09:20:38 -0600181 host: keycloak.your.domain
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100182 port: 8180
roger yuana08006e2021-04-20 09:20:38 -0600183 # Specifies a set of users, credentials, roles, and groups
184 realm: aai-resources
185 # Used by any client application for enabling fine-grained authorization for their protected resources
186 resource: aai-resources-app
187 # If set to true, additional criteria will be added that match the data-owner property with the given role
188 # to the user in keycloak
189 multiTenancy:
190 enabled: true
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100191
192 # Specifies crud related operation timeouts and overrides
193 crud:
194 timeout:
195 # Specifies if the timeout for REST GET calls should be enabled
196 enabled: true
197 # Specifies the timeout values for application specific
198 # Its a pipe seperated list where each element before comma represents
199 # the X-FromAppId and the comma after specifies the timeout limit in ms
200 # If the timeout limit is -1 then it means for these apps no timeout
201 appspecific: JUNITTESTAPP1,1|JUNITTESTAPP2,-1|DCAE-CCS,-1|DCAES,-1|AAIRctFeed,-1|NewvceCreator,-1|IANewvceCreator,-1|AAI-CSIOVALS,-1
202 # Specifies what is the maximum timeout limit in milliseconds
203 limit: 100000
204
205 # Specifies configuration for bulk apis
206 bulk:
207 # Specifies for a bulk payload how many transactions in total allowed
208 limit: 30
209 # Specifies if the bulk can be override and if it can the value
210 override: false
211
212nodeSelector: {}
213
214affinity: {}
215
216# probe configuration parameters
217liveness:
218 initialDelaySeconds: 60
219 periodSeconds: 60
220 # necessary to disable liveness probe when setting breakpoints
221 # in debugger so K8s doesn't restart unresponsive container
222 enabled: false
223
224readiness:
225 initialDelaySeconds: 60
226 periodSeconds: 10
227
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100228service:
229 type: ClusterIP
osk1146127fd7d82021-06-18 00:51:17 +0200230 portName: http
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100231 internalPort: 8447
osk1146127fd7d82021-06-18 00:51:17 +0200232 portName2: tcp-5005
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100233 internalPort2: 5005
M.Hosnidokht09523be2021-08-24 09:00:42 -0400234 terminationGracePeriodSeconds: 120
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100235
236ingress:
237 enabled: false
238
239 # We usually recommend not to specify default resources and to leave this as a conscious
240 # choice for the user. This also increases chances charts run on environments with little
241 # resources, such as Minikube. If you do want to specify resources, uncomment the following
242 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
243 #
244 # Example:
245 # Configure resource requests and limits
246 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
247 # Minimum memory for development is 2 CPU cores and 4GB memory
248 # Minimum memory for production is 4 CPU cores and 8GB memory
249#resources:
250# limits:
251# cpu: 2
252# memory: 4Gi
253# requests:
254# cpu: 2
255# memory: 4Gi
256resources:
257 small:
258 limits:
259 cpu: 2
260 memory: 4Gi
261 requests:
262 cpu: 1
263 memory: 3Gi
264 large:
265 limits:
266 cpu: 4
267 memory: 8Gi
268 requests:
269 cpu: 2
270 memory: 4Gi
271 unlimited: {}
farida azmyd8937332021-03-09 12:20:42 +0200272
273#Pods Service Account
274serviceAccount:
275 nameOverride: aai-resources
276 roles:
277 - read