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 |
Bin Yang | f2344c4 | 2020-09-16 14:49:21 +0800 | [diff] [blame] | 21 | artifactImage: onap/multicloud/framework-artifactbroker:1.6.0 |
Kiran Kamineni | 60f7247 | 2018-12-18 13:30:38 -0800 | [diff] [blame] | 22 | prometheus: |
| 23 | enabled: false |
Sylvain Desbureaux | a1f9301 | 2019-12-09 11:43:47 +0100 | [diff] [blame] | 24 | persistence: {} |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 25 | |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 26 | ################################################################# |
| 27 | # Application configuration defaults. |
| 28 | ################################################################# |
| 29 | # application image |
Bin Yang | f2344c4 | 2020-09-16 14:49:21 +0800 | [diff] [blame] | 30 | image: onap/multicloud/framework:1.6.0 |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 31 | pullPolicy: Always |
| 32 | |
Huabing Zhao | 8957780 | 2018-07-30 09:41:17 +0000 | [diff] [blame] | 33 | #Istio sidecar injection policy |
| 34 | istioSidecar: true |
| 35 | |
Sylvain Desbureaux | 37dc40c | 2020-11-21 22:46:57 +0100 | [diff] [blame] | 36 | multicloud-azure: |
| 37 | enabled: true |
| 38 | multicloud-fcaps: |
| 39 | enabled: true |
| 40 | multicloud-k8s: |
| 41 | enabled: true |
| 42 | multicloud-pike: |
| 43 | enabled: true |
| 44 | multicloud-prometheus: |
| 45 | enabled: false |
| 46 | multicloud-starlingx: |
| 47 | enabled: true |
| 48 | multicloud-vio: |
| 49 | enabled: true |
| 50 | multicloud-windriver: |
| 51 | enabled: true |
| 52 | |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 53 | # application configuration |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 54 | config: |
Bin Yang | 2e5ecc3 | 2020-01-23 02:46:07 +0000 | [diff] [blame] | 55 | ssl_enabled: true |
| 56 | msbprotocol: https |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 57 | msbgateway: msb-iag |
Bin Yang | 2e5ecc3 | 2020-01-23 02:46:07 +0000 | [diff] [blame] | 58 | msbPort: 443 |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 59 | logstashServiceName: log-ls |
| 60 | logstashPort: 5044 |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 61 | aai: |
| 62 | port: 8443 |
Bin Yang | 4884afa | 2018-05-23 18:30:31 +0000 | [diff] [blame] | 63 | schemaVersion: v13 |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 64 | username: AAI |
| 65 | password: AAI |
| 66 | |
| 67 | # default number of instances |
| 68 | replicaCount: 1 |
| 69 | |
| 70 | nodeSelector: {} |
| 71 | |
| 72 | affinity: {} |
| 73 | |
| 74 | # probe configuration parameters |
| 75 | liveness: |
| 76 | initialDelaySeconds: 30 |
| 77 | periodSeconds: 10 |
| 78 | timeoutSeconds: 10 |
| 79 | successThreshold: 1 |
| 80 | failureThreshold: 5 |
| 81 | enabled: true |
| 82 | |
| 83 | service: |
Bin Yang | 9ea6b40 | 2019-05-08 02:09:38 +0000 | [diff] [blame] | 84 | type: ClusterIP |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 85 | name: multicloud |
Bin Yang | 0c54f18 | 2018-10-09 03:27:40 +0000 | [diff] [blame] | 86 | portName: multicloud-framework |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 87 | externalPort: 9001 |
| 88 | internalPort: 9001 |
| 89 | nodePort: 91 |
| 90 | |
| 91 | ingress: |
| 92 | enabled: false |
| 93 | |
Mukul | 62927a1 | 2018-09-11 11:42:00 +0000 | [diff] [blame] | 94 | # Resource Limit flavor -By Default using small |
| 95 | flavor: small |
| 96 | # Segregation for Different environment (Small and Large) |
| 97 | resources: |
| 98 | small: |
| 99 | limits: |
| 100 | cpu: 1 |
| 101 | memory: 4Gi |
| 102 | requests: |
| 103 | cpu: 10m |
| 104 | memory: 1Gi |
| 105 | large: |
| 106 | limits: |
| 107 | cpu: 2 |
| 108 | memory: 8Gi |
| 109 | requests: |
| 110 | cpu: 20m |
| 111 | memory: 2Gi |
Bin Yang | 0c54f18 | 2018-10-09 03:27:40 +0000 | [diff] [blame] | 112 | unlimited: {} |