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 |
Andreas Geissler | 2c1ba29 | 2024-01-10 22:20:05 +0100 | [diff] [blame] | 22 | # flag to enable the DB creation via mariadb-operator |
| 23 | useOperator: true |
Andreas Geissler | cfd8434 | 2023-08-16 17:18:49 +0200 | [diff] [blame] | 24 | #This flag allows NBI to instantiate its own mariadb-galera cluster |
Andreas Geissler | f51bbef | 2023-03-31 12:07:23 +0200 | [diff] [blame] | 25 | #When changing it to "true", also set "globalCluster: false" |
| 26 | #as the dependency check will not work otherwise (Chart.yaml) |
Sylvain Desbureaux | 1d061a4 | 2019-11-08 15:27:20 +0100 | [diff] [blame] | 27 | localCluster: false |
Andreas Geissler | f51bbef | 2023-03-31 12:07:23 +0200 | [diff] [blame] | 28 | globalCluster: true |
Andreas Geissler | 576de2d | 2023-10-24 15:38:01 +0200 | [diff] [blame] | 29 | service: mariadb-galera |
Sylvain Desbureaux | 1d061a4 | 2019-11-08 15:27:20 +0100 | [diff] [blame] | 30 | internalPort: 3306 |
| 31 | nameOverride: mariadb-galera |
Andreas Geissler | 638330d | 2023-03-20 15:24:36 +0100 | [diff] [blame] | 32 | msbEnabled: false |
Sylvain Desbureaux | e44d170 | 2018-05-07 20:39:16 +0200 | [diff] [blame] | 33 | |
Krzysztof Opasiak | e383b32 | 2020-02-07 15:49:54 +0100 | [diff] [blame] | 34 | ################################################################# |
| 35 | # Secrets metaconfig |
| 36 | ################################################################# |
| 37 | secrets: |
| 38 | - uid: nbi-db-secret |
Sylvain Desbureaux | 93a5b49 | 2020-11-27 11:07:42 +0100 | [diff] [blame] | 39 | name: &dbUserSecretName '{{ include "common.release" . }}-nbi-db-secret' |
Krzysztof Opasiak | e383b32 | 2020-02-07 15:49:54 +0100 | [diff] [blame] | 40 | type: basicAuth |
| 41 | externalSecret: '{{ tpl (default "" .Values.config.db.userCredentialsExternalSecret) . }}' |
| 42 | login: '{{ .Values.config.db.userName }}' |
| 43 | password: '{{ .Values.config.db.userPassword }}' |
| 44 | |
Sylvain Desbureaux | e44d170 | 2018-05-07 20:39:16 +0200 | [diff] [blame] | 45 | subChartsOnly: |
| 46 | enabled: true |
| 47 | |
| 48 | # application image |
| 49 | repository: nexus3.onap.org:10001 |
Eric Debeau | c45c81f | 2022-05-10 12:05:12 +0200 | [diff] [blame] | 50 | image: onap/externalapi/nbi:10.0.0 |
Sylvain Desbureaux | 1d061a4 | 2019-11-08 15:27:20 +0100 | [diff] [blame] | 51 | pullPolicy: IfNotPresent |
Sylvain Desbureaux | e44d170 | 2018-05-07 20:39:16 +0200 | [diff] [blame] | 52 | sdc_authorization: Basic YWFpOktwOGJKNFNYc3pNMFdYbGhhazNlSGxjc2UyZ0F3ODR2YW9HR21KdlV5MlU= |
| 53 | aai_authorization: Basic QUFJOkFBSQ== |
| 54 | so_authorization: |
| 55 | |
| 56 | # application configuration |
| 57 | config: |
| 58 | loglevel: INFO |
| 59 | logstashServiceName: log-ls |
| 60 | logstashPort: 5044 |
| 61 | cloudOwner: CloudOwner |
aleemraja | 40149d8 | 2020-10-16 17:48:17 +0530 | [diff] [blame] | 62 | k8sCloudRegionId: k8sregionfour |
| 63 | k8sCloudOwner: k8scloudowner4 |
Sylvain Desbureaux | e44d170 | 2018-05-07 20:39:16 +0200 | [diff] [blame] | 64 | ecompInstanceId: OOM |
| 65 | openStackRegion: RegionOne |
Sylvain Desbureaux | 33f8367 | 2018-06-01 14:28:39 +0200 | [diff] [blame] | 66 | openStackVNFTenantId: 31047205ce114b60833b23e400d6a535 |
Krzysztof Opasiak | e383b32 | 2020-02-07 15:49:54 +0100 | [diff] [blame] | 67 | db: |
Andreas Geissler | 72caf09 | 2023-12-14 13:37:39 +0100 | [diff] [blame] | 68 | userName: &dbuser rene |
Krzysztof Opasiak | e383b32 | 2020-02-07 15:49:54 +0100 | [diff] [blame] | 69 | # userPassword: password |
| 70 | # userCredentialsExternalSecret: some-secret |
Sylvain Desbureaux | e44d170 | 2018-05-07 20:39:16 +0200 | [diff] [blame] | 71 | |
Sylvain Desbureaux | 9e851c6 | 2019-10-28 15:52:05 +0100 | [diff] [blame] | 72 | mariadb-galera: |
Sylvain Desbureaux | 93a5b49 | 2020-11-27 11:07:42 +0100 | [diff] [blame] | 73 | db: |
Andreas Geissler | 72caf09 | 2023-12-14 13:37:39 +0100 | [diff] [blame] | 74 | user: *dbuser |
Sylvain Desbureaux | 93a5b49 | 2020-11-27 11:07:42 +0100 | [diff] [blame] | 75 | externalSecret: *dbUserSecretName |
| 76 | name: &mysqlDbName nbi |
andreasgeissler | b15b095 | 2021-06-10 16:21:09 +0200 | [diff] [blame] | 77 | service: |
| 78 | name: nbi-galera |
| 79 | portName: nbi-galera |
| 80 | internalPort: 3306 |
Sylvain Desbureaux | 93a5b49 | 2020-11-27 11:07:42 +0100 | [diff] [blame] | 81 | nameOverride: &nbi-galera nbi-galera |
Sylvain Desbureaux | 9e851c6 | 2019-10-28 15:52:05 +0100 | [diff] [blame] | 82 | replicaCount: 1 |
Andreas Geissler | cfd8434 | 2023-08-16 17:18:49 +0200 | [diff] [blame] | 83 | mariadbOperator: |
| 84 | galera: |
| 85 | enabled: false |
Sylvain Desbureaux | e44d170 | 2018-05-07 20:39:16 +0200 | [diff] [blame] | 86 | persistence: |
Sylvain Desbureaux | e44d170 | 2018-05-07 20:39:16 +0200 | [diff] [blame] | 87 | enabled: true |
Sylvain Desbureaux | 9e851c6 | 2019-10-28 15:52:05 +0100 | [diff] [blame] | 88 | mountSubPath: nbi/maria/data |
Sylvain Desbureaux | 93a5b49 | 2020-11-27 11:07:42 +0100 | [diff] [blame] | 89 | serviceAccount: |
| 90 | nameOverride: *nbi-galera |
Sylvain Desbureaux | e44d170 | 2018-05-07 20:39:16 +0200 | [diff] [blame] | 91 | |
Sylvain Desbureaux | 1d061a4 | 2019-11-08 15:27:20 +0100 | [diff] [blame] | 92 | mariadb-init: |
Sylvain Desbureaux | 93a5b49 | 2020-11-27 11:07:42 +0100 | [diff] [blame] | 93 | config: |
| 94 | userCredentialsExternalSecret: *dbUserSecretName |
| 95 | mysqlDatabase: *mysqlDbName |
Sylvain Desbureaux | 1d061a4 | 2019-11-08 15:27:20 +0100 | [diff] [blame] | 96 | nameOverride: nbi-config |
vladimir turok | d804418 | 2023-07-27 16:28:36 +0200 | [diff] [blame] | 97 | serviceAccount: |
| 98 | nameOverride: nbi-config |
Sylvain Desbureaux | 1d061a4 | 2019-11-08 15:27:20 +0100 | [diff] [blame] | 99 | |
Sylvain Desbureaux | e44d170 | 2018-05-07 20:39:16 +0200 | [diff] [blame] | 100 | mongo: |
| 101 | nameOverride: nbi-mongo |
| 102 | config: |
| 103 | dbName: ServiceOrderDB |
| 104 | service: |
| 105 | name: nbi-mongohost |
| 106 | internalPort: 27017 |
| 107 | nfsprovisionerPrefix: nbi |
| 108 | sdnctlPrefix: nbi |
| 109 | persistence: |
| 110 | mountSubPath: nbi/mongo/data |
| 111 | enabled: true |
| 112 | disableNfsProvisioner: true |
| 113 | |
| 114 | |
| 115 | # default number of instances |
| 116 | replicaCount: 1 |
| 117 | |
| 118 | nodeSelector: {} |
| 119 | |
| 120 | affinity: {} |
| 121 | |
| 122 | # probe configuration parameters |
| 123 | liveness: |
Sylvain Desbureaux | d82050c | 2020-03-17 10:43:40 +0100 | [diff] [blame] | 124 | path: /nbi/api/v4/status |
MatthieuGeerebaert | 89e3dc8 | 2018-10-08 14:02:08 +0200 | [diff] [blame] | 125 | initialDelaySeconds: 180 |
| 126 | periodSeconds: 30 |
Sylvain Desbureaux | e44d170 | 2018-05-07 20:39:16 +0200 | [diff] [blame] | 127 | # necessary to disable liveness probe when setting breakpoints |
| 128 | # in debugger so K8s doesn't restart unresponsive container |
| 129 | enabled: true |
| 130 | |
| 131 | readiness: |
Sylvain Desbureaux | d82050c | 2020-03-17 10:43:40 +0100 | [diff] [blame] | 132 | path: /nbi/api/v4/status |
MatthieuGeerebaert | 89e3dc8 | 2018-10-08 14:02:08 +0200 | [diff] [blame] | 133 | initialDelaySeconds: 185 |
| 134 | periodSeconds: 30 |
Sylvain Desbureaux | e44d170 | 2018-05-07 20:39:16 +0200 | [diff] [blame] | 135 | |
| 136 | service: |
| 137 | type: NodePort |
| 138 | portName: api |
| 139 | name: nbi |
Andreas Geissler | 638330d | 2023-03-20 15:24:36 +0100 | [diff] [blame] | 140 | internalPort: 8080 |
Andreas Geissler | b19c851 | 2022-10-13 13:15:29 +0200 | [diff] [blame] | 141 | ports: |
| 142 | - name: http |
Andreas Geissler | 638330d | 2023-03-20 15:24:36 +0100 | [diff] [blame] | 143 | port: 8080 |
Andreas Geissler | b19c851 | 2022-10-13 13:15:29 +0200 | [diff] [blame] | 144 | nodePort: '74' |
Sylvain Desbureaux | e44d170 | 2018-05-07 20:39:16 +0200 | [diff] [blame] | 145 | |
| 146 | ingress: |
| 147 | enabled: false |
Lucjan Bryndza | 0564965 | 2020-04-29 08:52:33 +0000 | [diff] [blame] | 148 | service: |
Andreas Geissler | 51900a9 | 2022-08-03 13:10:35 +0200 | [diff] [blame] | 149 | - baseaddr: "nbi-api" |
Lucjan Bryndza | 0564965 | 2020-04-29 08:52:33 +0000 | [diff] [blame] | 150 | name: "nbi" |
Andreas Geissler | 638330d | 2023-03-20 15:24:36 +0100 | [diff] [blame] | 151 | port: 8080 |
Lucjan Bryndza | 0564965 | 2020-04-29 08:52:33 +0000 | [diff] [blame] | 152 | config: |
| 153 | ssl: "redirect" |
Mandeep Khinda | de04571 | 2018-09-19 18:11:57 +0000 | [diff] [blame] | 154 | # Resource Limit flavor -By Default using small |
vaibhavjayas | 659fbae | 2018-09-19 08:58:10 +0000 | [diff] [blame] | 155 | flavor: small |
| 156 | # Segregation for Different environment (Small and Large) |
Eric Debeau | 33774ef | 2018-09-11 12:23:07 +0000 | [diff] [blame] | 157 | resources: |
vaibhavjayas | 659fbae | 2018-09-19 08:58:10 +0000 | [diff] [blame] | 158 | small: |
| 159 | limits: |
Andreas Geissler | 4753743 | 2024-02-27 08:55:23 +0100 | [diff] [blame] | 160 | cpu: "2" |
| 161 | memory: "1Gi" |
Mandeep Khinda | de04571 | 2018-09-19 18:11:57 +0000 | [diff] [blame] | 162 | requests: |
Andreas Geissler | 4753743 | 2024-02-27 08:55:23 +0100 | [diff] [blame] | 163 | cpu: "0.5" |
| 164 | memory: "1Gi" |
vaibhavjayas | 659fbae | 2018-09-19 08:58:10 +0000 | [diff] [blame] | 165 | large: |
| 166 | limits: |
Andreas Geissler | 4753743 | 2024-02-27 08:55:23 +0100 | [diff] [blame] | 167 | cpu: "4" |
| 168 | memory: "2Gi" |
vaibhavjayas | 659fbae | 2018-09-19 08:58:10 +0000 | [diff] [blame] | 169 | requests: |
Andreas Geissler | 4753743 | 2024-02-27 08:55:23 +0100 | [diff] [blame] | 170 | cpu: "1" |
| 171 | memory: "2Gi" |
MatthieuGeerebaert | a3adffd | 2018-10-05 14:52:50 +0200 | [diff] [blame] | 172 | unlimited: {} |
farida azmy | 37c9876 | 2021-10-18 13:06:52 +0200 | [diff] [blame] | 173 | |
| 174 | #Pods Service Account |
| 175 | serviceAccount: |
| 176 | nameOverride: nbi |
| 177 | roles: |
| 178 | - read |