blob: 0dc035494bfd230a8082ee80eb27884f32b579ad [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 Desbureaux1694e1d2020-08-21 09:58:25 +020020 readinessImage: onap/oom/readiness:3.0.1
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040021 loggingRepository: docker.elastic.co
22 loggingImage: beats/filebeat:5.5.0
Sylvain Desbureauxb7ed2ee2019-11-29 11:35:13 +010023 persistence: {}
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040024#################################################################
25# Application configuration defaults.
26#################################################################
27# application image
28repository: nexus3.onap.org:10001
krishnaa96dd54b962020-09-21 14:52:16 +053029image: onap/optf-osdf:3.0.0
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040030pullPolicy: Always
31
32# flag to enable debugging - application support required
33debugEnabled: false
34
35# application configuration
36config:
Patel, Ankitkumard4b37e22018-05-29 16:56:30 -040037 msbgateway: msb-iag
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040038 msbPort: 80
Dileep Ranganathan61225cb2018-10-01 08:14:16 -070039 placementVersioningEnabled: True
Dileep Ranganathanf706ae12018-10-01 04:27:13 -070040 # Placement API latest version numbers to be set in HTTP header
41 placementMajorVersion: "1"
42 placementMinorVersion: "0"
43 placementPatchVersion: "0"
44 # Placement API default version numbers to be set in HTTP header
45 placementDefaultMajorVersion: "1"
46 placementDefaultMinorVersion: "0"
47 placementDefaultPatchVersion: "0"
Krzysztof Opasiak1cddd1d2020-04-16 20:06:50 +020048
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040049 # Url and credentials for Conductor.
vrvarma8f500492019-04-25 23:08:01 -040050 conductorUrl: https://oof-has-api:8091/v1/plans/
vrvarma96294cd2020-05-25 12:36:54 -040051 conductorPingWaitTime: 10
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040052 conductorMaxRetries: 30
Dileep Ranganathanf706ae12018-10-01 04:27:13 -070053 # versions to be set in HTTP header
54 conductorMinorVersion: 0
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040055 # Url and credentials for the Policy Platform
Krzysztof Opasiak1cddd1d2020-04-16 20:06:50 +020056 policyPlatformUrl: https://policy-xacml-pdp:6969/policy/pdpx/v1/decision # Policy Dev platform URL
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040057 policyPlatformEnv: TEST # Environment for policy platform
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040058 # Credentials for the message reader - A placeholder.
59 messageReaderHosts: NA
60 messageReaderTopic: NA
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040061 # Credentials for the SDC interface - A placeholder.
62 sdcUrl: NA
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040063 sdcONAPInstanceID: NA
Dileep Ranganathanf706ae12018-10-01 04:27:13 -070064 #AAF Authentication
65 is_aaf_enabled: False
vrvarma8f500492019-04-25 23:08:01 -040066 aaf_cache_expiry_mins: 5
Dileep Ranganathanf706ae12018-10-01 04:27:13 -070067 aaf_url: https://aaf-service:8100
68 aaf_user_roles:
vrvarma8f500492019-04-25 23:08:01 -040069 - '/placement:org.onap.oof.access|*|read ALL'
70 - '/pci:org.onap.oof.access|*|read ALL'
Dileep Ranganathanf706ae12018-10-01 04:27:13 -070071 # Secret Management Service from AAF
Dileep Ranganathan61225cb2018-10-01 08:14:16 -070072 aaf_sms_url: https://aaf-sms
73 aaf_sms_port: 10443
Dileep Ranganathanf706ae12018-10-01 04:27:13 -070074 aaf_sms_timeout: 30
75 secret_domain: osdf
76 aaf_ca_certs: /opt/app/ssl_cert/aaf_root_ca.cer
77 # config db api
78 configDbUrl: http://config.db.url:8080
Dileep Ranganathanf706ae12018-10-01 04:27:13 -070079 configDbGetCellListUrl: 'SDNCConfigDBAPI/getCellList'
80 configDbGetNbrListUrl: 'SDNCConfigDBAPI/getNbrList'
krishnaa96dd54b962020-09-21 14:52:16 +053081 #aai api
82 aaiUrl: https://aai:8443
83 aaiGetLinksUrl: /aai/v16/network/logical-links
84 aaiServiceInstanceUrl : /aai/v20/nodes/service-instances/service-instance/
85 aaiGetControllersUrl: /aai/v19/external-system/esr-thirdparty-sdnc-list
86 controllerQueryUrl: /aai/v19/query?format=resource
87 aaiGetInterDomainLinksUrl: /aai/v19/network/logical-links?link-type=inter-domain&operational-status=up
88 #des api
89 desUrl: https://des.url:9000
90 desApiPath: /datalake/v1/exposure/
91
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040092# default number of instances
93replicaCount: 1
94nodeSelector: {}
95affinity: {}
Prateekinlinuxb84ba5e2018-09-20 12:07:08 +000096# Resource Limit flavor -By Default using small
97flavor: small
krishnaa96dbcd1ca2020-08-11 10:26:50 +053098
99#sub-charts configuration
100certInitializer:
101 nameOverride: oof-osdf-cert-initializer
102 fqdn: "oof.onap"
103 app_ns: "org.osaaf.aaf"
104 fqi: "oof@oof.onap.org"
105 fqi_namespace: org.onap.oof
106 public_fqdn: "oof.onap.org"
107 aafDeployFqi: "deployer@people.osaaf.org"
108 aafDeployPass: demo123456!
109 cadi_latitude: "0.0"
110 cadi_longitude: "0.0"
111 credsPath: /opt/app/osaaf/local
112 appMountPath: /opt/osdf/osaaf
113 aaf_add_config: >
114 chmod 444 {{ .Values.credsPath }}/{{ .Values.fqi_namespace }}.key;
115
Prateekinlinuxb84ba5e2018-09-20 12:07:08 +0000116# Segregation for Different environment (Small and Large)
117resources:
118 small:
119 limits:
Dileep Ranganathan61225cb2018-10-01 08:14:16 -0700120 memory: 2Gi
121 cpu: 1000m
Prateekinlinuxb84ba5e2018-09-20 12:07:08 +0000122 requests:
123 memory: 1Gi
124 cpu: 500m
125 large:
126 limits:
Dileep Ranganathan61225cb2018-10-01 08:14:16 -0700127 memory: 4Gi
128 cpu: 2000m
Prateekinlinuxb84ba5e2018-09-20 12:07:08 +0000129 requests:
130 memory: 2Gi
131 cpu: 1000m
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000132 unlimited: {}
Ikram Ikramullah40b120b2018-05-01 11:35:40 -0400133# probe configuration parameters
134liveness:
135 initialDelaySeconds: 10
136 periodSeconds: 10
137 # necessary to disable liveness probe when setting breakpoints
138 # in debugger so K8s doesn't restart unresponsive container
139 enabled: true
140readiness:
141 initialDelaySeconds: 10
142 periodSeconds: 10
143service:
144 type: NodePort
145 name: oof-osdf
146 externalPort: 8698
147 internalPort: 8699
148 nodePort: 48
149ingress:
150 enabled: false
Lucjan Bryndzae529d752019-11-28 15:32:42 +0100151 service:
152 - baseaddr: "oofosdf"
153 name: "oof-osdf"
154 port: 8698
155 config:
Sylvain Desbureauxa64c46d2020-05-06 15:22:29 +0200156 ssl: "redirect"
krishnaa96dbcd1ca2020-08-11 10:26:50 +0530157
158#component overrides
159
160oof-cmso:
161 enabled: true
162oof-has:
163 enabled: true