Sylvain Desbureaux | e44d170 | 2018-05-07 20:39:16 +0200 | [diff] [blame] | 1 | # Copyright © 2018 Orange |
Prateekinlinux | 445a18e | 2018-08-01 06:48:33 +0000 | [diff] [blame] | 2 | # Modifications Copyright © 2018 Amdocs, Bell Canada |
Sylvain Desbureaux | e44d170 | 2018-05-07 20:39:16 +0200 | [diff] [blame] | 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 |
Sylvain Desbureaux | 1d061a4 | 2019-11-08 15:27:20 +0100 | [diff] [blame] | 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 |
Sylvain Desbureaux | d82050c | 2020-03-17 10:43:40 +0100 | [diff] [blame] | 27 | aafEnabled: true |
Sylvain Desbureaux | d82050c | 2020-03-17 10:43:40 +0100 | [diff] [blame] | 28 | |
| 29 | ################################################################# |
| 30 | # AAF part |
| 31 | ################################################################# |
Krzysztof Opasiak | 020cdb9 | 2020-05-01 01:46:37 +0200 | [diff] [blame] | 32 | certInitializer: |
| 33 | nameOverride: nbi-cert-initializer |
Sylvain Desbureaux | d82050c | 2020-03-17 10:43:40 +0100 | [diff] [blame] | 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" |
Sylvain Desbureaux | d82050c | 2020-03-17 10:43:40 +0100 | [diff] [blame] | 42 | app_ns: org.osaaf.aaf |
Krzysztof Opasiak | 020cdb9 | 2020-05-01 01:46:37 +0200 | [diff] [blame] | 43 | credsPath: /opt/app/osaaf/local |
| 44 | aaf_add_config: > |
| 45 | /opt/app/aaf_config/bin/agent.sh; |
| 46 | /opt/app/aaf_config/bin/agent.sh local showpass |
| 47 | {{.Values.fqi}} {{ .Values.fqdn }} > {{ .Values.credsPath }}/mycreds.prop |
| 48 | |
| 49 | aafConfig: |
Sylvain Desbureaux | d82050c | 2020-03-17 10:43:40 +0100 | [diff] [blame] | 50 | permission_user: 1000 |
| 51 | permission_group: 999 |
Sylvain Desbureaux | e44d170 | 2018-05-07 20:39:16 +0200 | [diff] [blame] | 52 | |
Krzysztof Opasiak | e383b32 | 2020-02-07 15:49:54 +0100 | [diff] [blame] | 53 | ################################################################# |
| 54 | # Secrets metaconfig |
| 55 | ################################################################# |
| 56 | secrets: |
| 57 | - uid: nbi-db-secret |
| 58 | name: '{{ include "common.release" . }}-nbi-db-secret' |
| 59 | type: basicAuth |
| 60 | externalSecret: '{{ tpl (default "" .Values.config.db.userCredentialsExternalSecret) . }}' |
| 61 | login: '{{ .Values.config.db.userName }}' |
| 62 | password: '{{ .Values.config.db.userPassword }}' |
| 63 | |
Sylvain Desbureaux | e44d170 | 2018-05-07 20:39:16 +0200 | [diff] [blame] | 64 | subChartsOnly: |
| 65 | enabled: true |
| 66 | |
| 67 | # application image |
| 68 | repository: nexus3.onap.org:10001 |
aosull01 | f7b781e | 2020-08-28 15:02:06 +0100 | [diff] [blame] | 69 | image: onap/externalapi/nbi:7.0.2 |
Sylvain Desbureaux | 1d061a4 | 2019-11-08 15:27:20 +0100 | [diff] [blame] | 70 | pullPolicy: IfNotPresent |
Sylvain Desbureaux | e44d170 | 2018-05-07 20:39:16 +0200 | [diff] [blame] | 71 | sdc_authorization: Basic YWFpOktwOGJKNFNYc3pNMFdYbGhhazNlSGxjc2UyZ0F3ODR2YW9HR21KdlV5MlU= |
| 72 | aai_authorization: Basic QUFJOkFBSQ== |
| 73 | so_authorization: |
| 74 | |
| 75 | # application configuration |
| 76 | config: |
| 77 | loglevel: INFO |
| 78 | logstashServiceName: log-ls |
| 79 | logstashPort: 5044 |
| 80 | cloudOwner: CloudOwner |
aleemraja | 40149d8 | 2020-10-16 17:48:17 +0530 | [diff] [blame] | 81 | k8sCloudRegionId: k8sregionfour |
| 82 | k8sCloudOwner: k8scloudowner4 |
Sylvain Desbureaux | e44d170 | 2018-05-07 20:39:16 +0200 | [diff] [blame] | 83 | ecompInstanceId: OOM |
| 84 | openStackRegion: RegionOne |
Sylvain Desbureaux | 33f8367 | 2018-06-01 14:28:39 +0200 | [diff] [blame] | 85 | openStackVNFTenantId: 31047205ce114b60833b23e400d6a535 |
Krzysztof Opasiak | e383b32 | 2020-02-07 15:49:54 +0100 | [diff] [blame] | 86 | db: |
| 87 | userName: rene |
| 88 | # userPassword: password |
| 89 | # userCredentialsExternalSecret: some-secret |
Sylvain Desbureaux | e44d170 | 2018-05-07 20:39:16 +0200 | [diff] [blame] | 90 | |
Sylvain Desbureaux | 9e851c6 | 2019-10-28 15:52:05 +0100 | [diff] [blame] | 91 | mariadb-galera: |
Sylvain Desbureaux | 1d061a4 | 2019-11-08 15:27:20 +0100 | [diff] [blame] | 92 | # '&mariadbConfig' means we "store" the values for later use in the file |
| 93 | # with '*mariadbConfig' pointer. |
| 94 | config: &mariadbConfig |
Krzysztof Opasiak | 8cf46b4 | 2020-02-08 01:07:21 +0100 | [diff] [blame] | 95 | userCredentialsExternalSecret: '{{ include "common.release" . }}-nbi-db-secret' |
Krzysztof Opasiak | e383b32 | 2020-02-07 15:49:54 +0100 | [diff] [blame] | 96 | mysqlDatabase: nbi |
Sylvain Desbureaux | 9e851c6 | 2019-10-28 15:52:05 +0100 | [diff] [blame] | 97 | nameOverride: nbi-galera |
| 98 | service: |
| 99 | name: nbi-galera |
| 100 | portName: nbi-galera |
Sylvain Desbureaux | 1d061a4 | 2019-11-08 15:27:20 +0100 | [diff] [blame] | 101 | internalPort: 3306 |
Sylvain Desbureaux | 9e851c6 | 2019-10-28 15:52:05 +0100 | [diff] [blame] | 102 | replicaCount: 1 |
Sylvain Desbureaux | e44d170 | 2018-05-07 20:39:16 +0200 | [diff] [blame] | 103 | persistence: |
Sylvain Desbureaux | e44d170 | 2018-05-07 20:39:16 +0200 | [diff] [blame] | 104 | enabled: true |
Sylvain Desbureaux | 9e851c6 | 2019-10-28 15:52:05 +0100 | [diff] [blame] | 105 | mountSubPath: nbi/maria/data |
Sylvain Desbureaux | e44d170 | 2018-05-07 20:39:16 +0200 | [diff] [blame] | 106 | |
Sylvain Desbureaux | 1d061a4 | 2019-11-08 15:27:20 +0100 | [diff] [blame] | 107 | mariadb-init: |
| 108 | config: *mariadbConfig |
| 109 | nameOverride: nbi-config |
| 110 | |
Sylvain Desbureaux | e44d170 | 2018-05-07 20:39:16 +0200 | [diff] [blame] | 111 | mongo: |
| 112 | nameOverride: nbi-mongo |
| 113 | config: |
| 114 | dbName: ServiceOrderDB |
| 115 | service: |
| 116 | name: nbi-mongohost |
| 117 | internalPort: 27017 |
| 118 | nfsprovisionerPrefix: nbi |
| 119 | sdnctlPrefix: nbi |
| 120 | persistence: |
| 121 | mountSubPath: nbi/mongo/data |
| 122 | enabled: true |
| 123 | disableNfsProvisioner: true |
| 124 | |
| 125 | |
| 126 | # default number of instances |
| 127 | replicaCount: 1 |
| 128 | |
| 129 | nodeSelector: {} |
| 130 | |
| 131 | affinity: {} |
| 132 | |
| 133 | # probe configuration parameters |
| 134 | liveness: |
Sylvain Desbureaux | d82050c | 2020-03-17 10:43:40 +0100 | [diff] [blame] | 135 | path: /nbi/api/v4/status |
| 136 | port: 8443 |
MatthieuGeerebaert | 89e3dc8 | 2018-10-08 14:02:08 +0200 | [diff] [blame] | 137 | initialDelaySeconds: 180 |
| 138 | periodSeconds: 30 |
Sylvain Desbureaux | e44d170 | 2018-05-07 20:39:16 +0200 | [diff] [blame] | 139 | # necessary to disable liveness probe when setting breakpoints |
| 140 | # in debugger so K8s doesn't restart unresponsive container |
| 141 | enabled: true |
| 142 | |
| 143 | readiness: |
Sylvain Desbureaux | d82050c | 2020-03-17 10:43:40 +0100 | [diff] [blame] | 144 | path: /nbi/api/v4/status |
| 145 | port: 8443 |
MatthieuGeerebaert | 89e3dc8 | 2018-10-08 14:02:08 +0200 | [diff] [blame] | 146 | initialDelaySeconds: 185 |
| 147 | periodSeconds: 30 |
Sylvain Desbureaux | e44d170 | 2018-05-07 20:39:16 +0200 | [diff] [blame] | 148 | |
| 149 | service: |
| 150 | type: NodePort |
| 151 | portName: api |
| 152 | name: nbi |
Mandeep Khinda | 9ef4d43 | 2018-05-17 20:16:06 +0000 | [diff] [blame] | 153 | nodePort: 74 |
Sylvain Desbureaux | d82050c | 2020-03-17 10:43:40 +0100 | [diff] [blame] | 154 | internalPort: 8443 |
Sylvain Desbureaux | e44d170 | 2018-05-07 20:39:16 +0200 | [diff] [blame] | 155 | |
| 156 | ingress: |
| 157 | enabled: false |
Lucjan Bryndza | 0564965 | 2020-04-29 08:52:33 +0000 | [diff] [blame] | 158 | service: |
| 159 | - baseaddr: "nbi.api" |
| 160 | name: "nbi" |
| 161 | port: 8443 |
| 162 | config: |
| 163 | ssl: "redirect" |
Mandeep Khinda | de04571 | 2018-09-19 18:11:57 +0000 | [diff] [blame] | 164 | # Resource Limit flavor -By Default using small |
vaibhavjayas | 659fbae | 2018-09-19 08:58:10 +0000 | [diff] [blame] | 165 | flavor: small |
| 166 | # Segregation for Different environment (Small and Large) |
Eric Debeau | 33774ef | 2018-09-11 12:23:07 +0000 | [diff] [blame] | 167 | resources: |
vaibhavjayas | 659fbae | 2018-09-19 08:58:10 +0000 | [diff] [blame] | 168 | small: |
| 169 | limits: |
Mandeep Khinda | de04571 | 2018-09-19 18:11:57 +0000 | [diff] [blame] | 170 | cpu: 1 |
| 171 | memory: 2Gi |
| 172 | requests: |
| 173 | cpu: 100m |
| 174 | memory: 1Gi |
vaibhavjayas | 659fbae | 2018-09-19 08:58:10 +0000 | [diff] [blame] | 175 | large: |
| 176 | limits: |
| 177 | cpu: 2 |
| 178 | memory: 4Gi |
| 179 | requests: |
| 180 | cpu: 200m |
Mandeep Khinda | 60d36d4 | 2018-09-24 15:15:48 +0000 | [diff] [blame] | 181 | memory: 2Gi |
MatthieuGeerebaert | a3adffd | 2018-10-05 14:52:50 +0200 | [diff] [blame] | 182 | unlimited: {} |