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 |
| 26 | repository: nexus3.onap.org:10001 |
Gary Wu | bc1e731 | 2018-10-18 09:48:31 -0700 | [diff] [blame] | 27 | image: onap/multicloud/openstack-ocata:1.2.0 |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 28 | pullPolicy: Always |
| 29 | |
Huabing Zhao | 8957780 | 2018-07-30 09:41:17 +0000 | [diff] [blame] | 30 | #Istio sidecar injection policy |
| 31 | istioSidecar: true |
| 32 | |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 33 | # application configuration |
| 34 | config: |
| 35 | msbgateway: msb-iag |
| 36 | msbPort: 80 |
| 37 | aai: |
| 38 | port: 8443 |
Bin Yang | 4884afa | 2018-05-23 18:30:31 +0000 | [diff] [blame] | 39 | schemaVersion: v13 |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 40 | username: AAI |
| 41 | password: AAI |
| 42 | |
| 43 | # default number of instances |
| 44 | replicaCount: 1 |
| 45 | |
| 46 | nodeSelector: {} |
| 47 | |
| 48 | affinity: {} |
| 49 | |
| 50 | # probe configuration parameters |
| 51 | liveness: |
| 52 | initialDelaySeconds: 30 |
| 53 | periodSeconds: 10 |
| 54 | timeoutSeconds: 10 |
| 55 | successThreshold: 1 |
| 56 | failureThreshold: 5 |
| 57 | enabled: true |
| 58 | |
| 59 | service: |
| 60 | type: NodePort |
| 61 | name: multicloud-ocata |
Bin Yang | 0c54f18 | 2018-10-09 03:27:40 +0000 | [diff] [blame] | 62 | portName: multicloud-ocata |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 63 | externalPort: 9006 |
| 64 | internalPort: 9006 |
| 65 | nodePort: 93 |
| 66 | |
Pradeep Patel | d5187f9 | 2018-04-26 06:07:56 +0000 | [diff] [blame] | 67 | ingress: |
| 68 | enabled: false |
| 69 | |
Mukul | 62927a1 | 2018-09-11 11:42:00 +0000 | [diff] [blame] | 70 | # Resource Limit flavor -By Default using small |
| 71 | flavor: small |
| 72 | # Segregation for Different environment (Small and Large) |
| 73 | resources: |
| 74 | small: |
| 75 | limits: |
| 76 | cpu: 1 |
| 77 | memory: 4Gi |
| 78 | requests: |
| 79 | cpu: 10m |
| 80 | memory: 1Gi |
| 81 | large: |
| 82 | limits: |
| 83 | cpu: 2 |
| 84 | memory: 8Gi |
| 85 | requests: |
| 86 | cpu: 20m |
| 87 | memory: 2Gi |
Bin Yang | 0c54f18 | 2018-10-09 03:27:40 +0000 | [diff] [blame] | 88 | unlimited: {} |