Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 1 | # Copyright (c) 2018 Amdocs, Bell Canada, AT&T |
Sylvain Desbureaux | 5b65132 | 2020-12-07 15:34:15 +0100 | [diff] [blame] | 2 | # Copyright (c) 2020 Nokia, Orange |
Sylvain Desbureaux | 331f004 | 2021-01-18 11:38:49 +0100 | [diff] [blame] | 3 | # Modifications Copyright (c) 2021 Orange |
efiacor | d12c167 | 2023-03-23 12:10:50 +0000 | [diff] [blame] | 4 | # Modifications Copyright © 2023 Nordix Foundation |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 5 | # |
| 6 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | # you may not use this file except in compliance with the License. |
| 8 | # You may obtain a copy of the License at |
| 9 | # |
| 10 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | # |
| 12 | # Unless required by applicable law or agreed to in writing, software |
| 13 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | # See the License for the specific language governing permissions and |
| 16 | # limitations under the License. |
| 17 | |
| 18 | # Default values for resources. |
| 19 | # This is a YAML-formatted file. |
| 20 | # Declare variables to be passed into your templates. |
| 21 | global: # global defaults |
| 22 | nodePortPrefix: 302 |
Sylvain Desbureaux | 5b65132 | 2020-12-07 15:34:15 +0100 | [diff] [blame] | 23 | cassandra: |
| 24 | #Service Name of the cassandra cluster to connect to. |
| 25 | #Override it to aai-cassandra if localCluster is enabled. |
| 26 | serviceName: cassandra |
| 27 | |
Sylvain Desbureaux | 5b65132 | 2020-12-07 15:34:15 +0100 | [diff] [blame] | 28 | # Specifies a list of jobs to be run |
| 29 | jobs: |
| 30 | # When enabled, it will create the schema based on oxm and edge rules |
| 31 | createSchema: |
| 32 | enabled: true |
| 33 | #migration using helm hooks |
| 34 | migration: |
| 35 | enabled: false |
| 36 | |
| 37 | config: |
| 38 | # Specifies that the cluster connected to a dynamic |
| 39 | # cluster being spinned up by kubernetes deployment |
| 40 | cluster: |
| 41 | cassandra: |
| 42 | dynamic: true |
| 43 | |
| 44 | # Specifies if the basic authorization is enabled |
| 45 | basic: |
| 46 | auth: |
| 47 | enabled: true |
| 48 | username: AAI |
| 49 | passwd: AAI |
| 50 | |
| 51 | # Active spring profiles for the resources microservice |
| 52 | profiles: |
efiacor | d12c167 | 2023-03-23 12:10:50 +0000 | [diff] [blame] | 53 | active: production,dmaap |
Sylvain Desbureaux | 5b65132 | 2020-12-07 15:34:15 +0100 | [diff] [blame] | 54 | |
| 55 | # Notification event specific properties |
| 56 | notification: |
| 57 | eventType: AAI-EVENT |
| 58 | domain: dev |
| 59 | |
| 60 | # Schema specific properties that include supported versions of api |
| 61 | schema: |
| 62 | # Specifies if the connection should be one way ssl, two way ssl or no auth |
| 63 | service: |
efiacor | d12c167 | 2023-03-23 12:10:50 +0000 | [diff] [blame] | 64 | client: no-auth |
Sylvain Desbureaux | 5b65132 | 2020-12-07 15:34:15 +0100 | [diff] [blame] | 65 | # Specifies which translator to use if it has schema-service, then it will make a rest request to schema service |
| 66 | translator: |
| 67 | list: schema-service |
| 68 | source: |
| 69 | # Specifies which folder to take a look at |
| 70 | name: onap |
| 71 | uri: |
| 72 | # Base URI Path of the application |
| 73 | base: |
| 74 | path: /aai |
| 75 | version: |
| 76 | # Current version of the REST API |
| 77 | api: |
wr148d | cd3e6b7 | 2022-08-19 16:17:44 -0400 | [diff] [blame] | 78 | default: v27 |
Sylvain Desbureaux | 5b65132 | 2020-12-07 15:34:15 +0100 | [diff] [blame] | 79 | # Specifies which version the depth parameter is configurable |
| 80 | depth: v11 |
| 81 | # List of all the supported versions of the API |
wr148d | cd3e6b7 | 2022-08-19 16:17:44 -0400 | [diff] [blame] | 82 | list: v11,v12,v13,v14,v15,v16,v17,v18,v19,v20,v21,v22,v23,v24,v25,v26,v27 |
Sylvain Desbureaux | 5b65132 | 2020-12-07 15:34:15 +0100 | [diff] [blame] | 83 | # Specifies from which version related link should appear |
| 84 | related: |
| 85 | link: v11 |
| 86 | # Specifies from which version the app root change happened |
| 87 | app: |
| 88 | root: v11 |
| 89 | # Specifies from which version the xml namespace changed |
| 90 | namespace: |
| 91 | change: v12 |
| 92 | # Specifies from which version the edge label appeared in API |
| 93 | edge: |
| 94 | label: v12 |
| 95 | |
Sylvain Desbureaux | 5b65132 | 2020-12-07 15:34:15 +0100 | [diff] [blame] | 96 | # Specifies which clients should always default to realtime graph connection |
| 97 | realtime: |
| 98 | clients: SDNC,MSO,SO,robot-ete |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 99 | |
Sylvain Desbureaux | 331f004 | 2021-01-18 11:38:49 +0100 | [diff] [blame] | 100 | api_list: |
| 101 | - 11 |
| 102 | - 12 |
| 103 | - 13 |
| 104 | - 14 |
| 105 | - 15 |
| 106 | - 16 |
| 107 | - 17 |
| 108 | - 18 |
| 109 | - 19 |
| 110 | |
| 111 | aai_enpoints: |
| 112 | - name: aai-cloudInfrastructure |
| 113 | url: cloud-infrastructure |
| 114 | - name: aai-business |
| 115 | url: business |
| 116 | - name: aai-actions |
| 117 | url: actions |
| 118 | - name: aai-service-design-and-creation |
| 119 | url: service-design-and-creation |
| 120 | - name: aai-network |
| 121 | url: network |
| 122 | - name: aai-externalSystem |
| 123 | url: external-system |
| 124 | |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 125 | # application image |
wr148d | 702d68a | 2022-10-20 18:26:54 -0400 | [diff] [blame] | 126 | image: onap/aai-resources:1.11.0 |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 127 | pullPolicy: Always |
| 128 | restartPolicy: Always |
| 129 | flavor: small |
| 130 | flavorOverride: small |
| 131 | # default number of instances |
| 132 | replicaCount: 1 |
M.Hosnidokht | 09523be | 2021-08-24 09:00:42 -0400 | [diff] [blame] | 133 | # the minimum number of seconds that a newly created Pod should be ready |
| 134 | minReadySeconds: 30 |
| 135 | updateStrategy: |
| 136 | type: RollingUpdate |
| 137 | # The number of pods that can be unavailable during the update process |
| 138 | maxUnavailable: 0 |
| 139 | # The number of pods that can be created above the desired amount of pods during an update |
| 140 | maxSurge: 1 |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 141 | |
| 142 | # Configuration for the resources deployment |
| 143 | config: |
roger yuan | a08006e | 2021-04-20 09:20:38 -0600 | [diff] [blame] | 144 | # configure keycloak according to your environment. |
| 145 | # don't forget to add keycloak in active profiles above (global.config.profiles) |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 146 | keycloak: |
roger yuan | a08006e | 2021-04-20 09:20:38 -0600 | [diff] [blame] | 147 | host: keycloak.your.domain |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 148 | port: 8180 |
roger yuan | a08006e | 2021-04-20 09:20:38 -0600 | [diff] [blame] | 149 | # Specifies a set of users, credentials, roles, and groups |
| 150 | realm: aai-resources |
| 151 | # Used by any client application for enabling fine-grained authorization for their protected resources |
| 152 | resource: aai-resources-app |
| 153 | # If set to true, additional criteria will be added that match the data-owner property with the given role |
| 154 | # to the user in keycloak |
| 155 | multiTenancy: |
| 156 | enabled: true |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 157 | |
| 158 | # Specifies crud related operation timeouts and overrides |
| 159 | crud: |
| 160 | timeout: |
| 161 | # Specifies if the timeout for REST GET calls should be enabled |
| 162 | enabled: true |
| 163 | # Specifies the timeout values for application specific |
| 164 | # Its a pipe seperated list where each element before comma represents |
| 165 | # the X-FromAppId and the comma after specifies the timeout limit in ms |
| 166 | # If the timeout limit is -1 then it means for these apps no timeout |
| 167 | appspecific: JUNITTESTAPP1,1|JUNITTESTAPP2,-1|DCAE-CCS,-1|DCAES,-1|AAIRctFeed,-1|NewvceCreator,-1|IANewvceCreator,-1|AAI-CSIOVALS,-1 |
| 168 | # Specifies what is the maximum timeout limit in milliseconds |
| 169 | limit: 100000 |
| 170 | |
| 171 | # Specifies configuration for bulk apis |
| 172 | bulk: |
| 173 | # Specifies for a bulk payload how many transactions in total allowed |
| 174 | limit: 30 |
| 175 | # Specifies if the bulk can be override and if it can the value |
| 176 | override: false |
| 177 | |
| 178 | nodeSelector: {} |
| 179 | |
| 180 | affinity: {} |
| 181 | |
| 182 | # probe configuration parameters |
| 183 | liveness: |
| 184 | initialDelaySeconds: 60 |
| 185 | periodSeconds: 60 |
| 186 | # necessary to disable liveness probe when setting breakpoints |
| 187 | # in debugger so K8s doesn't restart unresponsive container |
| 188 | enabled: false |
| 189 | |
| 190 | readiness: |
| 191 | initialDelaySeconds: 60 |
| 192 | periodSeconds: 10 |
| 193 | |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 194 | service: |
| 195 | type: ClusterIP |
osk11461 | 27fd7d8 | 2021-06-18 00:51:17 +0200 | [diff] [blame] | 196 | portName: http |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 197 | internalPort: 8447 |
osk11461 | 27fd7d8 | 2021-06-18 00:51:17 +0200 | [diff] [blame] | 198 | portName2: tcp-5005 |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 199 | internalPort2: 5005 |
leila | 46fb580 | 2022-11-15 11:33:21 -0500 | [diff] [blame] | 200 | portName3: aai-resources-8448 |
| 201 | internalPort3: 8448 |
M.Hosnidokht | 09523be | 2021-08-24 09:00:42 -0400 | [diff] [blame] | 202 | terminationGracePeriodSeconds: 120 |
leila | 46fb580 | 2022-11-15 11:33:21 -0500 | [diff] [blame] | 203 | sessionAffinity: None |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 204 | |
| 205 | ingress: |
| 206 | enabled: false |
| 207 | |
| 208 | # We usually recommend not to specify default resources and to leave this as a conscious |
| 209 | # choice for the user. This also increases chances charts run on environments with little |
| 210 | # resources, such as Minikube. If you do want to specify resources, uncomment the following |
| 211 | # lines, adjust them as necessary, and remove the curly braces after 'resources:'. |
| 212 | # |
| 213 | # Example: |
| 214 | # Configure resource requests and limits |
| 215 | # ref: http://kubernetes.io/docs/user-guide/compute-resources/ |
| 216 | # Minimum memory for development is 2 CPU cores and 4GB memory |
| 217 | # Minimum memory for production is 4 CPU cores and 8GB memory |
| 218 | #resources: |
| 219 | # limits: |
| 220 | # cpu: 2 |
| 221 | # memory: 4Gi |
| 222 | # requests: |
| 223 | # cpu: 2 |
| 224 | # memory: 4Gi |
| 225 | resources: |
| 226 | small: |
| 227 | limits: |
| 228 | cpu: 2 |
| 229 | memory: 4Gi |
| 230 | requests: |
| 231 | cpu: 1 |
| 232 | memory: 3Gi |
| 233 | large: |
| 234 | limits: |
| 235 | cpu: 4 |
| 236 | memory: 8Gi |
| 237 | requests: |
| 238 | cpu: 2 |
| 239 | memory: 4Gi |
| 240 | unlimited: {} |
farida azmy | d893733 | 2021-03-09 12:20:42 +0200 | [diff] [blame] | 241 | |
leila | 46fb580 | 2022-11-15 11:33:21 -0500 | [diff] [blame] | 242 | metrics: |
| 243 | serviceMonitor: |
| 244 | enabled: false |
| 245 | targetPort: 8448 |
| 246 | path: /prometheus |
| 247 | basicAuth: |
| 248 | enabled: false |
| 249 | externalSecretName: mysecretname |
| 250 | externalSecretUserKey: login |
| 251 | externalSecretPasswordKey: password |
| 252 | |
| 253 | ## Namespace in which Prometheus is running |
| 254 | ## |
| 255 | # namespace: monitoring |
| 256 | |
| 257 | ## Interval at which metrics should be scraped. |
| 258 | ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint |
| 259 | ## |
| 260 | #interval: 30s |
| 261 | |
| 262 | ## Timeout after which the scrape is ended |
| 263 | ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint |
| 264 | ## |
| 265 | # scrapeTimeout: 10s |
| 266 | |
| 267 | ## ServiceMonitor selector labels |
| 268 | ## ref: https://github.com/bitnami/charts/tree/master/bitnami/prometheus-operator#prometheus-configuration |
| 269 | ## |
| 270 | selector: |
| 271 | app: '{{ include "common.name" . }}' |
| 272 | chart: '{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}' |
| 273 | release: '{{ include "common.release" . }}' |
| 274 | heritage: '{{ .Release.Service }}' |
| 275 | |
| 276 | ## RelabelConfigs to apply to samples before scraping |
| 277 | ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#relabelconfig |
| 278 | ## Value is evalued as a template |
| 279 | ## |
| 280 | relabelings: [] |
| 281 | |
| 282 | ## MetricRelabelConfigs to apply to samples before ingestion |
| 283 | ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#relabelconfig |
| 284 | ## Value is evalued as a template |
| 285 | ## |
| 286 | metricRelabelings: [] |
| 287 | # - sourceLabels: |
| 288 | # - "__name__" |
| 289 | # targetLabel: "__name__" |
| 290 | # action: replace |
| 291 | # regex: '(.*)' |
| 292 | # replacement: 'example_prefix_$1' |
| 293 | |
farida azmy | d893733 | 2021-03-09 12:20:42 +0200 | [diff] [blame] | 294 | #Pods Service Account |
| 295 | serviceAccount: |
| 296 | nameOverride: aai-resources |
| 297 | roles: |
| 298 | - read |
Maciej Wereski | d523d12 | 2021-09-21 11:22:13 +0200 | [diff] [blame] | 299 | |
| 300 | #Log configuration |
| 301 | log: |
| 302 | path: /var/log/onap |
| 303 | logConfigMapNamePrefix: '{{ include "common.fullname" . }}' |
Rommel Pawar | c03db78 | 2022-09-21 16:16:12 -0700 | [diff] [blame] | 304 | |
| 305 | # To make logback capping values configurable |
| 306 | logback: |
| 307 | logToFileEnabled: true |
| 308 | maxHistory: 7 |
| 309 | totalSizeCap: 1GB |
| 310 | queueSize: 1000 |
| 311 | |
| 312 | accessLogback: |
| 313 | logToFileEnabled: true |
| 314 | maxHistory: 7 |
| 315 | totalSizeCap: 1GB |