[OOF] Update OOF image versions
[oom.git] / kubernetes / oof / values.yaml
1 # 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 #################################################################
18 global:
19   nodePortPrefix: 302
20   persistence: {}
21
22 #################################################################
23 # Secrets metaconfig
24 #################################################################
25 secrets:
26   - uid: oof-onap-certs
27     name: &oof-certs '{{ include "common.release" . }}-oof-onap-certs'
28     externalSecret: '{{ tpl (default "" .Values.certSecret) . }}'
29     type: generic
30     filePaths:
31       - resources/config/certs/intermediate_root_ca.pem
32       - resources/config/certs/aaf_root_ca.cer
33
34 #################################################################
35 # Application configuration defaults.
36 #################################################################
37 # application image
38 image: onap/optf-osdf:3.0.7
39 pullPolicy: Always
40
41 # flag to enable debugging - application support required
42 debugEnabled: false
43
44 # application configuration
45 config:
46   msbgateway: msb-iag
47   msbPort: 80
48   placementVersioningEnabled: True
49   # Placement API latest version numbers to be set in HTTP header
50   placementMajorVersion: "1"
51   placementMinorVersion: "0"
52   placementPatchVersion: "0"
53   # Placement API default version numbers to be set in HTTP header
54   placementDefaultMajorVersion: "1"
55   placementDefaultMinorVersion: "0"
56   placementDefaultPatchVersion: "0"
57
58   # Url and credentials for Conductor.
59   conductorUrl: https://oof-has-api:8091/v1/plans/
60   conductorPingWaitTime: 10
61   conductorMaxRetries: 30
62   # versions to be set in HTTP header
63   conductorMinorVersion: 0
64   # Url and credentials for the Policy Platform
65   policyPlatformUrl: https://policy-xacml-pdp:6969/policy/pdpx/v1/decision  # Policy Dev platform URL
66   policyPlatformEnv: TEST # Environment for policy platform
67   # Credentials for the message reader - A placeholder.
68   messageReaderHosts: NA
69   messageReaderTopic: NA
70   # Credentials for the SDC interface - A placeholder.
71   sdcUrl: NA
72   sdcONAPInstanceID: NA
73   #AAF Authentication
74   is_aaf_enabled: False
75   aaf_cache_expiry_mins: 5
76   aaf_url: https://aaf-service:8100
77   aaf_user_roles:
78       - '/placement:org.onap.oof.access|*|read ALL'
79       - '/pci:org.onap.oof.access|*|read ALL'
80   # Secret Management Service from AAF
81   aaf_sms_url: https://aaf-sms
82   aaf_sms_port: 10443
83   aaf_sms_timeout: 30
84   secret_domain: osdf
85   aaf_ca_certs: /opt/app/ssl_cert/aaf_root_ca.cer
86   configClientType: cps
87   # config db api
88   configDbUrl: http://configdb:8080
89   configDbGetCellListUrl: 'api/sdnc-config-db/v3/getCellList'
90   configDbGetNbrListUrl: 'api/sdnc-config-db/v3/getNbrList'
91   # cps api
92   cps:
93     url: cps-tbdmt:8080/execute
94     cellListUrl: 'ran-network/getCellList'
95     nbrListUrl: 'ran-network/getNbrList'
96
97   #aai api
98   aaiUrl: https://aai:8443
99   aaiGetLinksUrl: /aai/v16/network/logical-links
100   aaiServiceInstanceUrl : /aai/v20/nodes/service-instances/service-instance/
101   aaiGetControllersUrl: /aai/v19/external-system/esr-thirdparty-sdnc-list
102   controllerQueryUrl: /aai/v19/query?format=resource
103   aaiGetInterDomainLinksUrl: /aai/v19/network/logical-links?link-type=inter-domain&operational-status=up
104   #des api
105   desUrl: https://des.url:9000
106   desApiPath: /datalake/v1/exposure/
107   desUsername: ''
108   desPassword: ''
109 # default number of instances
110 replicaCount: 1
111 nodeSelector: {}
112 affinity: {}
113 # Resource Limit flavor -By Default using small
114 flavor: small
115
116 #sub-charts configuration
117 certInitializer:
118   nameOverride: oof-osdf-cert-initializer
119   fqdn: "oof.onap"
120   app_ns: "org.osaaf.aaf"
121   fqi: "oof@oof.onap.org"
122   fqi_namespace: org.onap.oof
123   public_fqdn: "oof.onap.org"
124   aafDeployFqi: "deployer@people.osaaf.org"
125   aafDeployPass: demo123456!
126   cadi_latitude: "0.0"
127   cadi_longitude: "0.0"
128   credsPath: /opt/app/osaaf/local
129   appMountPath: /opt/osdf/osaaf
130   aaf_add_config: >
131     chmod 444 {{ .Values.credsPath }}/{{ .Values.fqi_namespace }}.key;
132
133 # Segregation for Different environment (Small and Large)
134 resources:
135   small:
136     limits:
137       memory: 2Gi
138       cpu: 1000m
139     requests:
140       memory: 1Gi
141       cpu: 500m
142   large:
143     limits:
144       memory: 4Gi
145       cpu: 2000m
146     requests:
147       memory: 2Gi
148       cpu: 1000m
149   unlimited: {}
150 # probe configuration parameters
151 liveness:
152   initialDelaySeconds: 10
153   periodSeconds: 10
154   # necessary to disable liveness probe when setting breakpoints
155   # in debugger so K8s doesn't restart unresponsive container
156   enabled: true
157 readiness:
158   initialDelaySeconds: 10
159   periodSeconds: 10
160 service:
161   type: NodePort
162   name: oof-osdf
163   externalPort: 8698
164   internalPort: 8699
165   nodePort: 48
166 ingress:
167   enabled: false
168   service:
169     - baseaddr: "oofosdf"
170       name: "oof-osdf"
171       port: 8698
172   config:
173     ssl: "redirect"
174
175 #component overrides
176
177 oof-has:
178   enabled: true
179   certSecret: *oof-certs
180
181 #Pods Service Account
182 serviceAccount:
183   nameOverride: oof
184   roles:
185     - read