vaibhav_16dec | e04b2fe | 2018-03-22 09:07:12 +0000 | [diff] [blame] | 1 | # Copyright © 2017 Amdocs, Bell Canada |
Nishukumar | 376ba1e | 2018-08-03 09:17:23 +0000 | [diff] [blame] | 2 | # Modifications Copyright © 2018 AT&T |
vaibhav_16dec | e04b2fe | 2018-03-22 09:07:12 +0000 | [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 | |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 16 | ################################################################# |
| 17 | # Global configuration defaults. |
| 18 | ################################################################# |
| 19 | global: |
| 20 | nodePortPrefix: 302 |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 21 | loggingRepository: docker.elastic.co |
| 22 | loggingImage: beats/filebeat:5.5.0 |
Bin Yang | a20f07b | 2019-09-30 01:30:13 +0000 | [diff] [blame] | 23 | artifactImage: onap/multicloud/framework-artifactbroker:1.4.2 |
Kiran Kamineni | 60f7247 | 2018-12-18 13:30:38 -0800 | [diff] [blame] | 24 | prometheus: |
| 25 | enabled: false |
Sylvain Desbureaux | a1f9301 | 2019-12-09 11:43:47 +0100 | [diff] [blame] | 26 | persistence: {} |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 27 | |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 28 | ################################################################# |
| 29 | # Application configuration defaults. |
| 30 | ################################################################# |
| 31 | # application image |
| 32 | repository: nexus3.onap.org:10001 |
Bin Yang | a20f07b | 2019-09-30 01:30:13 +0000 | [diff] [blame] | 33 | image: onap/multicloud/framework:1.4.2 |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 34 | pullPolicy: Always |
| 35 | |
Huabing Zhao | 8957780 | 2018-07-30 09:41:17 +0000 | [diff] [blame] | 36 | #Istio sidecar injection policy |
| 37 | istioSidecar: true |
| 38 | |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 39 | # application configuration |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 40 | config: |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 41 | msbgateway: msb-iag |
| 42 | msbPort: 80 |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 43 | logstashServiceName: log-ls |
| 44 | logstashPort: 5044 |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 45 | aai: |
| 46 | port: 8443 |
Bin Yang | 4884afa | 2018-05-23 18:30:31 +0000 | [diff] [blame] | 47 | schemaVersion: v13 |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 48 | username: AAI |
| 49 | password: AAI |
| 50 | |
| 51 | # default number of instances |
| 52 | replicaCount: 1 |
| 53 | |
| 54 | nodeSelector: {} |
| 55 | |
| 56 | affinity: {} |
| 57 | |
| 58 | # probe configuration parameters |
| 59 | liveness: |
| 60 | initialDelaySeconds: 30 |
| 61 | periodSeconds: 10 |
| 62 | timeoutSeconds: 10 |
| 63 | successThreshold: 1 |
| 64 | failureThreshold: 5 |
| 65 | enabled: true |
| 66 | |
| 67 | service: |
Bin Yang | 9ea6b40 | 2019-05-08 02:09:38 +0000 | [diff] [blame] | 68 | type: ClusterIP |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 69 | name: multicloud |
Bin Yang | 0c54f18 | 2018-10-09 03:27:40 +0000 | [diff] [blame] | 70 | portName: multicloud-framework |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 71 | externalPort: 9001 |
| 72 | internalPort: 9001 |
| 73 | nodePort: 91 |
| 74 | |
| 75 | ingress: |
| 76 | enabled: false |
| 77 | |
Mukul | 62927a1 | 2018-09-11 11:42:00 +0000 | [diff] [blame] | 78 | # Resource Limit flavor -By Default using small |
| 79 | flavor: small |
| 80 | # Segregation for Different environment (Small and Large) |
| 81 | resources: |
| 82 | small: |
| 83 | limits: |
| 84 | cpu: 1 |
| 85 | memory: 4Gi |
| 86 | requests: |
| 87 | cpu: 10m |
| 88 | memory: 1Gi |
| 89 | large: |
| 90 | limits: |
| 91 | cpu: 2 |
| 92 | memory: 8Gi |
| 93 | requests: |
| 94 | cpu: 20m |
| 95 | memory: 2Gi |
Bin Yang | 0c54f18 | 2018-10-09 03:27:40 +0000 | [diff] [blame] | 96 | unlimited: {} |