blob: fe93a1e1d2475201778e0345296b763e7fb8c454 [file] [log] [blame]
Ikram Ikramullah40b120b2018-05-01 11:35:40 -04001# Copyright © 2017 Amdocs, AT&T, Bell Canada, VMware
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15#################################################################
16# Global configuration defaults.
17#################################################################
18global:
19 nodePortPrefix: 302
Sylvain Desbureauxb7ed2ee2019-11-29 11:35:13 +010020 persistence: {}
krishnaa9624a7ef32020-10-09 12:01:05 +053021
22#################################################################
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040023# Application configuration defaults.
24#################################################################
25# application image
Andreas Geissler0fcefb62023-02-20 12:00:42 +010026image: onap/optf-osdf:3.0.8
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040027pullPolicy: Always
28
29# flag to enable debugging - application support required
30debugEnabled: false
31
32# application configuration
33config:
Patel, Ankitkumard4b37e22018-05-29 16:56:30 -040034 msbgateway: msb-iag
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040035 msbPort: 80
Dileep Ranganathan61225cb2018-10-01 08:14:16 -070036 placementVersioningEnabled: True
Dileep Ranganathanf706ae12018-10-01 04:27:13 -070037 # Placement API latest version numbers to be set in HTTP header
38 placementMajorVersion: "1"
39 placementMinorVersion: "0"
40 placementPatchVersion: "0"
41 # Placement API default version numbers to be set in HTTP header
42 placementDefaultMajorVersion: "1"
43 placementDefaultMinorVersion: "0"
44 placementDefaultPatchVersion: "0"
Krzysztof Opasiak1cddd1d2020-04-16 20:06:50 +020045
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040046 # Url and credentials for Conductor.
amatthews379daac2022-08-18 15:31:12 +010047 conductorUrl:
amatthews379daac2022-08-18 15:31:12 +010048 http: http://oof-has-api:8091/v1/plans/
vrvarma96294cd2020-05-25 12:36:54 -040049 conductorPingWaitTime: 10
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040050 conductorMaxRetries: 30
Dileep Ranganathanf706ae12018-10-01 04:27:13 -070051 # versions to be set in HTTP header
52 conductorMinorVersion: 0
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040053 # Url and credentials for the Policy Platform
amatthews379daac2022-08-18 15:31:12 +010054 policyPlatformUrl:
amatthews379daac2022-08-18 15:31:12 +010055 http: http://policy-xacml-pdp:8080/policy/pdpx/v1/decision
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040056 policyPlatformEnv: TEST # Environment for policy platform
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040057 # Credentials for the message reader - A placeholder.
58 messageReaderHosts: NA
59 messageReaderTopic: NA
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040060 # Credentials for the SDC interface - A placeholder.
61 sdcUrl: NA
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040062 sdcONAPInstanceID: NA
Andreas Geissler0fcefb62023-02-20 12:00:42 +010063
krishnaa9607fc3ea2021-08-02 11:19:16 +053064 configClientType: cps
Andreas Geissler0fcefb62023-02-20 12:00:42 +010065
Dileep Ranganathanf706ae12018-10-01 04:27:13 -070066 # config db api
krishnaa96c1e3e0c2020-12-07 12:54:32 +053067 configDbUrl: http://configdb:8080
68 configDbGetCellListUrl: 'api/sdnc-config-db/v3/getCellList'
69 configDbGetNbrListUrl: 'api/sdnc-config-db/v3/getNbrList'
Andreas Geissler0fcefb62023-02-20 12:00:42 +010070
krishnaa9607fc3ea2021-08-02 11:19:16 +053071 # cps api
72 cps:
73 url: cps-tbdmt:8080/execute
74 cellListUrl: 'ran-network/getCellList'
75 nbrListUrl: 'ran-network/getNbrList'
76
krishnaa96dd54b962020-09-21 14:52:16 +053077 #aai api
amatthews379daac2022-08-18 15:31:12 +010078 aaiUrl:
Andreas Geissler0fcefb62023-02-20 12:00:42 +010079 http: http://aai:80
krishnaa96dd54b962020-09-21 14:52:16 +053080 aaiGetLinksUrl: /aai/v16/network/logical-links
81 aaiServiceInstanceUrl : /aai/v20/nodes/service-instances/service-instance/
82 aaiGetControllersUrl: /aai/v19/external-system/esr-thirdparty-sdnc-list
83 controllerQueryUrl: /aai/v19/query?format=resource
84 aaiGetInterDomainLinksUrl: /aai/v19/network/logical-links?link-type=inter-domain&operational-status=up
85 #des api
amatthews379daac2022-08-18 15:31:12 +010086 desUrl:
amatthews379daac2022-08-18 15:31:12 +010087 http: http://des.url:8080
krishnaa96dd54b962020-09-21 14:52:16 +053088 desApiPath: /datalake/v1/exposure/
krishnaa96bdad8552020-11-17 12:52:56 +053089 desUsername: ''
90 desPassword: ''
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040091# default number of instances
92replicaCount: 1
93nodeSelector: {}
94affinity: {}
Prateekinlinuxb84ba5e2018-09-20 12:07:08 +000095# Resource Limit flavor -By Default using small
96flavor: small
krishnaa96dbcd1ca2020-08-11 10:26:50 +053097
98#sub-charts configuration
99certInitializer:
100 nameOverride: oof-osdf-cert-initializer
101 fqdn: "oof.onap"
102 app_ns: "org.osaaf.aaf"
103 fqi: "oof@oof.onap.org"
104 fqi_namespace: org.onap.oof
105 public_fqdn: "oof.onap.org"
krishnaa96dbcd1ca2020-08-11 10:26:50 +0530106 cadi_latitude: "0.0"
107 cadi_longitude: "0.0"
108 credsPath: /opt/app/osaaf/local
109 appMountPath: /opt/osdf/osaaf
krishnaa96dbcd1ca2020-08-11 10:26:50 +0530110
Prateekinlinuxb84ba5e2018-09-20 12:07:08 +0000111# Segregation for Different environment (Small and Large)
112resources:
113 small:
114 limits:
Andreas Geissler555db9c2023-06-20 11:38:39 +0200115 cpu: 999
Prateekinlinuxb84ba5e2018-09-20 12:07:08 +0000116 memory: 1Gi
Andreas Geissler555db9c2023-06-20 11:38:39 +0200117 requests:
118 cpu: 0.5
119 memory: 1Gi
Prateekinlinuxb84ba5e2018-09-20 12:07:08 +0000120 large:
121 limits:
Andreas Geissler555db9c2023-06-20 11:38:39 +0200122 cpu: 999
Prateekinlinuxb84ba5e2018-09-20 12:07:08 +0000123 memory: 2Gi
Andreas Geissler555db9c2023-06-20 11:38:39 +0200124 requests:
125 cpu: 1
126 memory: 2Gi
127
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000128 unlimited: {}
Ikram Ikramullah40b120b2018-05-01 11:35:40 -0400129# probe configuration parameters
130liveness:
131 initialDelaySeconds: 10
132 periodSeconds: 10
133 # necessary to disable liveness probe when setting breakpoints
134 # in debugger so K8s doesn't restart unresponsive container
135 enabled: true
136readiness:
137 initialDelaySeconds: 10
138 periodSeconds: 10
139service:
140 type: NodePort
141 name: oof-osdf
Ikram Ikramullah40b120b2018-05-01 11:35:40 -0400142 internalPort: 8699
Andreas Geissler0fcefb62023-02-20 12:00:42 +0100143 ports:
144 - name: http
145 port: 8698
146 nodePort: '48'
Ikram Ikramullah40b120b2018-05-01 11:35:40 -0400147ingress:
148 enabled: false
Lucjan Bryndzae529d752019-11-28 15:32:42 +0100149 service:
Andreas Geissler51900a92022-08-03 13:10:35 +0200150 - baseaddr: "oof-osdf-api"
Lucjan Bryndzae529d752019-11-28 15:32:42 +0100151 name: "oof-osdf"
152 port: 8698
153 config:
Sylvain Desbureauxa64c46d2020-05-06 15:22:29 +0200154 ssl: "redirect"
krishnaa96dbcd1ca2020-08-11 10:26:50 +0530155
156#component overrides
157
krishnaa96dbcd1ca2020-08-11 10:26:50 +0530158oof-has:
159 enabled: true
Andreas Geissler0fcefb62023-02-20 12:00:42 +0100160
161readinessCheck:
162 wait_for:
163 - policy-xacml-pdp
farida azmyb3e25ca2021-10-27 15:56:35 +0200164
165#Pods Service Account
166serviceAccount:
167 nameOverride: oof
168 roles:
169 - read