Prateekinlinux | 445a18e | 2018-08-01 06:48:33 +0000 | [diff] [blame] | 1 | # Copyright © 2018 Amdocs, Bell Canada , ZTE |
| 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. |
BorislavG | 0433c91 | 2018-03-21 18:35:30 +0200 | [diff] [blame] | 14 | ################################################################# |
| 15 | # Global configuration defaults. |
| 16 | ################################################################# |
| 17 | global: |
| 18 | nodePortPrefix: 302 |
Sylvain Desbureaux | 1694e1d | 2020-08-21 09:58:25 +0200 | [diff] [blame] | 19 | readinessImage: onap/oom/readiness:3.0.1 |
BorislavG | 0433c91 | 2018-03-21 18:35:30 +0200 | [diff] [blame] | 20 | |
| 21 | ################################################################# |
| 22 | # Application configuration defaults. |
| 23 | ################################################################# |
| 24 | # application image |
| 25 | repository: nexus3.onap.org:10001 |
Huabing Zhao | d0559f4 | 2020-04-07 03:08:25 +0000 | [diff] [blame] | 26 | image: onap/msb/msb_discovery:1.2.6 |
BorislavG | 0433c91 | 2018-03-21 18:35:30 +0200 | [diff] [blame] | 27 | pullPolicy: Always |
Huabing Zhao | 81b8976 | 2018-07-30 06:33:03 +0000 | [diff] [blame] | 28 | istioSidecar: true |
BorislavG | 0433c91 | 2018-03-21 18:35:30 +0200 | [diff] [blame] | 29 | |
| 30 | # application configuration |
| 31 | config: {} |
| 32 | |
| 33 | # default number of instances |
| 34 | replicaCount: 1 |
| 35 | |
| 36 | nodeSelector: {} |
| 37 | |
| 38 | affinity: {} |
| 39 | |
| 40 | # probe configuration parameters |
| 41 | liveness: |
| 42 | initialDelaySeconds: 10 |
| 43 | periodSeconds: 10 |
| 44 | # necessary to disable liveness probe when setting breakpoints |
| 45 | # in debugger so K8s doesn't restart unresponsive container |
| 46 | enabled: true |
| 47 | |
| 48 | readiness: |
| 49 | initialDelaySeconds: 10 |
| 50 | periodSeconds: 10 |
| 51 | |
| 52 | service: |
Huabing Zhao | 7be039e | 2019-11-19 14:15:23 +0800 | [diff] [blame] | 53 | type: ClusterIP |
BorislavG | 0433c91 | 2018-03-21 18:35:30 +0200 | [diff] [blame] | 54 | name: msb-discovery |
| 55 | externalPort: 10081 |
| 56 | internalPort: 10081 |
| 57 | nodePort: 81 |
| 58 | |
| 59 | ingress: |
| 60 | enabled: false |
Lucjan Bryndza | a7228ec | 2019-12-02 15:11:53 +0100 | [diff] [blame] | 61 | service: |
Lucjan Bryndza | 0564965 | 2020-04-29 08:52:33 +0000 | [diff] [blame] | 62 | - baseaddr: "msb.api.discovery" |
Lucjan Bryndza | a7228ec | 2019-12-02 15:11:53 +0100 | [diff] [blame] | 63 | name: "msb-discovery" |
| 64 | port: 10081 |
| 65 | config: |
| 66 | ssl: "none" |
BorislavG | 0433c91 | 2018-03-21 18:35:30 +0200 | [diff] [blame] | 67 | |
vaibhavjayas | fe2140f | 2018-09-21 08:30:57 +0000 | [diff] [blame] | 68 | # Resource Limit flavor -By Default using small |
| 69 | flavor: small |
| 70 | # Segregation for Different environment (Small and Large) |
| 71 | resources: |
| 72 | small: |
| 73 | limits: |
| 74 | cpu: 400m |
| 75 | memory: 400Mi |
| 76 | requests: |
| 77 | cpu: 200m |
| 78 | memory: 200Mi |
| 79 | large: |
| 80 | limits: |
| 81 | cpu: 800m |
| 82 | memory: 800Mi |
| 83 | requests: |
| 84 | cpu: 400m |
| 85 | memory: 400Mi |
Huabing Zhao | 0f176a0 | 2019-03-18 19:31:45 +0800 | [diff] [blame] | 86 | unlimited: {} |