kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [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 |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [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 |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 21 | |
| 22 | ################################################################# |
| 23 | # Application configuration defaults. |
| 24 | ################################################################# |
| 25 | # application image |
Andreas Geissler | dfa23c8 | 2022-05-13 16:54:43 +0200 | [diff] [blame] | 26 | image: onap/multicloud/vio:1.4.2 |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 27 | pullPolicy: Always |
| 28 | |
Huabing Zhao | 8957780 | 2018-07-30 09:41:17 +0000 | [diff] [blame] | 29 | #Istio sidecar injection policy |
Mandeep Khinda | 60d36d4 | 2018-09-24 15:15:48 +0000 | [diff] [blame] | 30 | istioSidecar: true |
Huabing Zhao | 8957780 | 2018-07-30 09:41:17 +0000 | [diff] [blame] | 31 | |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 32 | # application configuration |
| 33 | config: |
| 34 | msbgateway: msb-iag |
Andreas Geissler | dfa23c8 | 2022-05-13 16:54:43 +0200 | [diff] [blame] | 35 | msbPort: 443 |
| 36 | msbPlainPort: 80 |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 37 | aai: |
Andreas Geissler | dfa23c8 | 2022-05-13 16:54:43 +0200 | [diff] [blame] | 38 | aaiPort: 8443 |
| 39 | aaiPlainPort: 8080 |
Bin Yang | 4884afa | 2018-05-23 18:30:31 +0000 | [diff] [blame] | 40 | schemaVersion: v13 |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 41 | username: AAI |
| 42 | password: AAI |
| 43 | |
| 44 | # default number of instances |
| 45 | replicaCount: 1 |
| 46 | |
| 47 | nodeSelector: {} |
| 48 | |
| 49 | affinity: {} |
| 50 | |
| 51 | # probe configuration parameters |
| 52 | liveness: |
| 53 | initialDelaySeconds: 30 |
| 54 | periodSeconds: 10 |
| 55 | timeoutSeconds: 10 |
| 56 | successThreshold: 1 |
| 57 | failureThreshold: 5 |
| 58 | enabled: true |
| 59 | |
| 60 | service: |
Bin Yang | 9ea6b40 | 2019-05-08 02:09:38 +0000 | [diff] [blame] | 61 | type: ClusterIP |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 62 | name: multicloud-vio |
Andreas Geissler | dfa23c8 | 2022-05-13 16:54:43 +0200 | [diff] [blame] | 63 | portName: http |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 64 | externalPort: 9004 |
| 65 | internalPort: 9004 |
| 66 | nodePort: 92 |
| 67 | |
Pradeep Patel | d5187f9 | 2018-04-26 06:07:56 +0000 | [diff] [blame] | 68 | ingress: |
| 69 | enabled: false |
| 70 | |
Mukul | 62927a1 | 2018-09-11 11:42:00 +0000 | [diff] [blame] | 71 | # Resource Limit flavor -By Default using small |
| 72 | flavor: small |
| 73 | # Segregation for Different environment (Small and Large) |
| 74 | resources: |
| 75 | small: |
| 76 | limits: |
| 77 | cpu: 1 |
| 78 | memory: 4Gi |
| 79 | requests: |
| 80 | cpu: 10m |
| 81 | memory: 1Gi |
| 82 | large: |
| 83 | limits: |
| 84 | cpu: 2 |
| 85 | memory: 8Gi |
| 86 | requests: |
| 87 | cpu: 20m |
| 88 | memory: 2Gi |
Bin Yang | 0c54f18 | 2018-10-09 03:27:40 +0000 | [diff] [blame] | 89 | unlimited: {} |
farida azmy | 7251355 | 2021-10-12 18:55:21 +0200 | [diff] [blame] | 90 | |
| 91 | #Pods Service Account |
| 92 | serviceAccount: |
| 93 | nameOverride: multicloud-vio |
| 94 | roles: |
| 95 | - read |
Maciej Wereski | 989c91c | 2021-11-17 16:45:14 +0100 | [diff] [blame] | 96 | |
| 97 | #Log configuration |
| 98 | log: |
| 99 | path: /var/log/onap |
| 100 | logConfigMapNamePrefix: '{{ include "common.fullname" . }}' |