[NBI] Simplify cert retrieval script
[oom.git] / kubernetes / nbi / values.yaml
1 # Copyright © 2018 Orange
2 # Modifications Copyright © 2018  Amdocs, Bell Canada
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 #################################################################
17 # Global configuration defaults.
18 #################################################################
19 global:
20   nodePortPrefix: 302
21   mariadbGalera: &mariadbGalera
22     #This flag allows SO to instantiate its own mariadb-galera cluster
23     localCluster: false
24     service: mariadb-galera
25     internalPort: 3306
26     nameOverride: mariadb-galera
27   aafEnabled: true
28
29 #################################################################
30 # AAF part
31 #################################################################
32 certInitializer:
33   nameOverride: nbi-cert-initializer
34   aafDeployFqi: deployer@people.osaaf.org
35   aafDeployPass: demo123456!
36   # aafDeployCredsExternalSecret: some secret
37   fqdn: nbi
38   fqi: nbi@nbi.onap.org
39   public_fqdn: nbi.onap.org
40   cadi_longitude: "0.0"
41   cadi_latitude: "0.0"
42   app_ns: org.osaaf.aaf
43   credsPath: /opt/app/osaaf/local
44   aaf_add_config: >
45     echo "cadi_keystore_password_p12=$cadi_keystore_password_p12" > {{ .Values.credsPath }}/mycreds.prop
46     echo "cadi_truststore_password=$cadi_truststore_password" >> {{ .Values.credsPath }}/mycreds.prop
47
48 aafConfig:
49   permission_user: 1000
50   permission_group: 999
51
52 #################################################################
53 # Secrets metaconfig
54 #################################################################
55 secrets:
56   - uid: nbi-db-secret
57     name: &dbUserSecretName '{{ include "common.release" . }}-nbi-db-secret'
58     type: basicAuth
59     externalSecret: '{{ tpl (default "" .Values.config.db.userCredentialsExternalSecret) . }}'
60     login: '{{ .Values.config.db.userName }}'
61     password: '{{ .Values.config.db.userPassword }}'
62
63 subChartsOnly:
64   enabled: true
65
66 # application image
67 repository: nexus3.onap.org:10001
68 image: onap/externalapi/nbi:8.0.1
69 pullPolicy: IfNotPresent
70 sdc_authorization: Basic YWFpOktwOGJKNFNYc3pNMFdYbGhhazNlSGxjc2UyZ0F3ODR2YW9HR21KdlV5MlU=
71 aai_authorization: Basic QUFJOkFBSQ==
72 so_authorization:
73
74 # application configuration
75 config:
76   loglevel: INFO
77   logstashServiceName: log-ls
78   logstashPort: 5044
79   cloudOwner: CloudOwner
80   k8sCloudRegionId: k8sregionfour
81   k8sCloudOwner: k8scloudowner4
82   ecompInstanceId: OOM
83   openStackRegion: RegionOne
84   openStackVNFTenantId: 31047205ce114b60833b23e400d6a535
85   db:
86     userName: rene
87     # userPassword: password
88     # userCredentialsExternalSecret: some-secret
89
90 mariadb-galera:
91   db:
92     externalSecret: *dbUserSecretName
93     name: &mysqlDbName nbi
94   nameOverride: &nbi-galera nbi-galera
95   replicaCount: 1
96   persistence:
97     enabled: true
98     mountSubPath: nbi/maria/data
99   serviceAccount:
100     nameOverride: *nbi-galera
101
102 mariadb-init:
103   config:
104     userCredentialsExternalSecret: *dbUserSecretName
105     mysqlDatabase: *mysqlDbName
106   nameOverride: nbi-config
107
108 mongo:
109   nameOverride: nbi-mongo
110   config:
111     dbName: ServiceOrderDB
112   service:
113     name: nbi-mongohost
114     internalPort: 27017
115   nfsprovisionerPrefix: nbi
116   sdnctlPrefix: nbi
117   persistence:
118     mountSubPath: nbi/mongo/data
119     enabled: true
120   disableNfsProvisioner: true
121
122
123 # default number of instances
124 replicaCount: 1
125
126 nodeSelector: {}
127
128 affinity: {}
129
130 # probe configuration parameters
131 liveness:
132   path: /nbi/api/v4/status
133   port: 8443
134   initialDelaySeconds: 180
135   periodSeconds: 30
136   # necessary to disable liveness probe when setting breakpoints
137   # in debugger so K8s doesn't restart unresponsive container
138   enabled: true
139
140 readiness:
141   path: /nbi/api/v4/status
142   port: 8443
143   initialDelaySeconds: 185
144   periodSeconds: 30
145
146 service:
147   type: NodePort
148   portName: api
149   name: nbi
150   nodePort: 74
151   internalPort: 8443
152
153 ingress:
154   enabled: false
155   service:
156     - baseaddr: "nbi.api"
157       name: "nbi"
158       port: 8443
159   config:
160     ssl: "redirect"
161 # Resource Limit flavor -By Default using small
162 flavor: small
163 # Segregation for Different environment (Small and Large)
164 resources:
165   small:
166     limits:
167       cpu: 1
168       memory: 2Gi
169     requests:
170       cpu: 100m
171       memory: 1Gi
172   large:
173     limits:
174       cpu: 2
175       memory: 4Gi
176     requests:
177       cpu: 200m
178       memory: 2Gi
179   unlimited: {}