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 |
| 21 | readinessRepository: oomk8s |
| 22 | readinessImage: readiness-check:1.1.0 |
| 23 | loggingRepository: docker.elastic.co |
| 24 | loggingImage: beats/filebeat:5.5.0 |
| 25 | |
| 26 | subChartsOnly: |
| 27 | enabled: true |
| 28 | |
| 29 | # application image |
| 30 | repository: nexus3.onap.org:10001 |
Sylvain Desbureaux | e66ebff | 2019-03-15 09:14:33 +0100 | [diff] [blame] | 31 | image: onap/externalapi/nbi:3.0.2 |
Sylvain Desbureaux | e44d170 | 2018-05-07 20:39:16 +0200 | [diff] [blame] | 32 | pullPolicy: Always |
| 33 | sdc_authorization: Basic YWFpOktwOGJKNFNYc3pNMFdYbGhhazNlSGxjc2UyZ0F3ODR2YW9HR21KdlV5MlU= |
| 34 | aai_authorization: Basic QUFJOkFBSQ== |
| 35 | so_authorization: |
| 36 | |
| 37 | # application configuration |
| 38 | config: |
| 39 | loglevel: INFO |
| 40 | logstashServiceName: log-ls |
| 41 | logstashPort: 5044 |
| 42 | cloudOwner: CloudOwner |
| 43 | ecompInstanceId: OOM |
| 44 | openStackRegion: RegionOne |
Sylvain Desbureaux | 33f8367 | 2018-06-01 14:28:39 +0200 | [diff] [blame] | 45 | openStackVNFTenantId: 31047205ce114b60833b23e400d6a535 |
Sylvain Desbureaux | e44d170 | 2018-05-07 20:39:16 +0200 | [diff] [blame] | 46 | |
| 47 | mariadb: |
| 48 | nameOverride: nbi-mariadb |
| 49 | service: |
| 50 | name: nbi-mariadbhost |
| 51 | internalPort: 3306 |
| 52 | config: |
| 53 | db: |
| 54 | database: nbi |
| 55 | user: rene |
| 56 | password: lkjgklqsdareyhjujlnnbvfvdttuiukgpiokqbfsjdhfigquosegombvjfqhb |
| 57 | root_password: dhqjdshjdsguryebvcnbvcvdsqghyjqgktgjjfhjfghbfs |
| 58 | persistence: |
| 59 | mountSubPath: nbi/maria/data |
| 60 | enabled: true |
| 61 | disableNfsProvisioner: true |
| 62 | |
| 63 | mongo: |
| 64 | nameOverride: nbi-mongo |
| 65 | config: |
| 66 | dbName: ServiceOrderDB |
| 67 | service: |
| 68 | name: nbi-mongohost |
| 69 | internalPort: 27017 |
| 70 | nfsprovisionerPrefix: nbi |
| 71 | sdnctlPrefix: nbi |
| 72 | persistence: |
| 73 | mountSubPath: nbi/mongo/data |
| 74 | enabled: true |
| 75 | disableNfsProvisioner: true |
| 76 | |
| 77 | |
| 78 | # default number of instances |
| 79 | replicaCount: 1 |
| 80 | |
| 81 | nodeSelector: {} |
| 82 | |
| 83 | affinity: {} |
| 84 | |
| 85 | # probe configuration parameters |
| 86 | liveness: |
MatthieuGeerebaert | a3adffd | 2018-10-05 14:52:50 +0200 | [diff] [blame] | 87 | httpGet: |
MatthieuGeerebaert | 33be15d | 2019-04-04 11:20:34 +0200 | [diff] [blame] | 88 | path: /nbi/api/v4/status |
MatthieuGeerebaert | a3adffd | 2018-10-05 14:52:50 +0200 | [diff] [blame] | 89 | port: 8080 |
MatthieuGeerebaert | 89e3dc8 | 2018-10-08 14:02:08 +0200 | [diff] [blame] | 90 | initialDelaySeconds: 180 |
| 91 | periodSeconds: 30 |
Sylvain Desbureaux | e44d170 | 2018-05-07 20:39:16 +0200 | [diff] [blame] | 92 | # necessary to disable liveness probe when setting breakpoints |
| 93 | # in debugger so K8s doesn't restart unresponsive container |
| 94 | enabled: true |
| 95 | |
| 96 | readiness: |
MatthieuGeerebaert | a3adffd | 2018-10-05 14:52:50 +0200 | [diff] [blame] | 97 | httpGet: |
MatthieuGeerebaert | 33be15d | 2019-04-04 11:20:34 +0200 | [diff] [blame] | 98 | path: /nbi/api/v4/status |
MatthieuGeerebaert | a3adffd | 2018-10-05 14:52:50 +0200 | [diff] [blame] | 99 | port: 8080 |
MatthieuGeerebaert | 89e3dc8 | 2018-10-08 14:02:08 +0200 | [diff] [blame] | 100 | initialDelaySeconds: 185 |
| 101 | periodSeconds: 30 |
Sylvain Desbureaux | e44d170 | 2018-05-07 20:39:16 +0200 | [diff] [blame] | 102 | |
| 103 | service: |
| 104 | type: NodePort |
| 105 | portName: api |
| 106 | name: nbi |
Mandeep Khinda | 9ef4d43 | 2018-05-17 20:16:06 +0000 | [diff] [blame] | 107 | nodePort: 74 |
Sylvain Desbureaux | e44d170 | 2018-05-07 20:39:16 +0200 | [diff] [blame] | 108 | internalPort: 8080 |
| 109 | |
| 110 | ingress: |
| 111 | enabled: false |
Mandeep Khinda | de04571 | 2018-09-19 18:11:57 +0000 | [diff] [blame] | 112 | # Resource Limit flavor -By Default using small |
vaibhavjayas | 659fbae | 2018-09-19 08:58:10 +0000 | [diff] [blame] | 113 | flavor: small |
| 114 | # Segregation for Different environment (Small and Large) |
Eric Debeau | 33774ef | 2018-09-11 12:23:07 +0000 | [diff] [blame] | 115 | resources: |
vaibhavjayas | 659fbae | 2018-09-19 08:58:10 +0000 | [diff] [blame] | 116 | small: |
| 117 | limits: |
Mandeep Khinda | de04571 | 2018-09-19 18:11:57 +0000 | [diff] [blame] | 118 | cpu: 1 |
| 119 | memory: 2Gi |
| 120 | requests: |
| 121 | cpu: 100m |
| 122 | memory: 1Gi |
vaibhavjayas | 659fbae | 2018-09-19 08:58:10 +0000 | [diff] [blame] | 123 | large: |
| 124 | limits: |
| 125 | cpu: 2 |
| 126 | memory: 4Gi |
| 127 | requests: |
| 128 | cpu: 200m |
Mandeep Khinda | 60d36d4 | 2018-09-24 15:15:48 +0000 | [diff] [blame] | 129 | memory: 2Gi |
MatthieuGeerebaert | a3adffd | 2018-10-05 14:52:50 +0200 | [diff] [blame] | 130 | unlimited: {} |