Haibin Huang | 110eabe | 2019-01-24 11:14:38 +0800 | [diff] [blame] | 1 | # Copyright (c) 2019 Intel Corporation. |
| 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. |
| 14 | |
| 15 | ################################################################# |
| 16 | # Global configuration defaults. |
| 17 | ################################################################# |
| 18 | global: |
| 19 | nodePortPrefixExt: 304 |
efiacor | c8c3316 | 2022-11-25 11:36:52 +0000 | [diff] [blame] | 20 | artifactImage: onap/multicloud/framework-artifactbroker:1.9.0 |
Haibin Huang | 110eabe | 2019-01-24 11:14:38 +0800 | [diff] [blame] | 21 | |
| 22 | ################################################################# |
| 23 | # Application configuration defaults. |
| 24 | ################################################################# |
| 25 | # application image |
| 26 | repository: nexus3.onap.org:10001 |
Bin Yang | df4fc03 | 2022-03-22 16:08:22 +0800 | [diff] [blame] | 27 | image: onap/multicloud/openstack-starlingx:1.5.7 |
Haibin Huang | 110eabe | 2019-01-24 11:14:38 +0800 | [diff] [blame] | 28 | pullPolicy: Always |
| 29 | |
| 30 | #Istio sidecar injection policy |
| 31 | istioSidecar: false |
| 32 | |
| 33 | # application configuration |
| 34 | config: |
Bin Yang | 842a484 | 2020-02-04 01:03:14 +0800 | [diff] [blame] | 35 | ssl_enabled: true |
Haibin Huang | 110eabe | 2019-01-24 11:14:38 +0800 | [diff] [blame] | 36 | msbgateway: msb-iag |
Bin Yang | 842a484 | 2020-02-04 01:03:14 +0800 | [diff] [blame] | 37 | msbPort: 443 |
Andreas Geissler | dfa23c8 | 2022-05-13 16:54:43 +0200 | [diff] [blame] | 38 | msbPlainPort: 80 |
Haibin Huang | 110eabe | 2019-01-24 11:14:38 +0800 | [diff] [blame] | 39 | aai: |
Andreas Geissler | dfa23c8 | 2022-05-13 16:54:43 +0200 | [diff] [blame] | 40 | aaiPort: 8443 |
| 41 | aaiPlainPort: 8080 |
Haibin Huang | 110eabe | 2019-01-24 11:14:38 +0800 | [diff] [blame] | 42 | schemaVersion: v13 |
| 43 | username: AAI |
| 44 | password: AAI |
| 45 | |
| 46 | # default number of instances |
| 47 | replicaCount: 1 |
| 48 | |
| 49 | nodeSelector: {} |
| 50 | |
| 51 | affinity: {} |
| 52 | |
| 53 | # probe configuration parameters |
| 54 | liveness: |
| 55 | initialDelaySeconds: 30 |
| 56 | periodSeconds: 10 |
| 57 | timeoutSeconds: 10 |
| 58 | successThreshold: 1 |
| 59 | failureThreshold: 5 |
| 60 | enabled: true |
| 61 | |
| 62 | service: |
Bin Yang | 9ea6b40 | 2019-05-08 02:09:38 +0000 | [diff] [blame] | 63 | type: ClusterIP |
Haibin Huang | 110eabe | 2019-01-24 11:14:38 +0800 | [diff] [blame] | 64 | name: multicloud-starlingx |
| 65 | portName: multicloud-starlingx |
| 66 | externalPort: 9009 |
| 67 | internalPort: 9009 |
| 68 | nodePort: 85 |
| 69 | |
| 70 | ingress: |
| 71 | enabled: false |
| 72 | |
| 73 | # Resource Limit flavor -By Default using small |
| 74 | flavor: small |
| 75 | # Segregation for Different environment (Small and Large) |
| 76 | resources: |
| 77 | small: |
| 78 | limits: |
| 79 | cpu: 1 |
| 80 | memory: 4Gi |
| 81 | requests: |
| 82 | cpu: 10m |
| 83 | memory: 1Gi |
| 84 | large: |
| 85 | limits: |
| 86 | cpu: 2 |
| 87 | memory: 8Gi |
| 88 | requests: |
| 89 | cpu: 20m |
| 90 | memory: 2Gi |
| 91 | unlimited: {} |
farida azmy | 7251355 | 2021-10-12 18:55:21 +0200 | [diff] [blame] | 92 | |
Bin Yang | df4fc03 | 2022-03-22 16:08:22 +0800 | [diff] [blame] | 93 | # memcached image resource |
| 94 | memcached: memcached:alpine3.15 |
| 95 | |
farida azmy | 7251355 | 2021-10-12 18:55:21 +0200 | [diff] [blame] | 96 | #Pods Service Account |
| 97 | serviceAccount: |
| 98 | nameOverride: multicloud-starlingx |
| 99 | roles: |
| 100 | - read |
Maciej Wereski | 989c91c | 2021-11-17 16:45:14 +0100 | [diff] [blame] | 101 | |
| 102 | #Log configuration |
| 103 | log: |
| 104 | path: /var/log/onap |
| 105 | logConfigMapNamePrefix: '{{ include "common.fullname" . }}' |