blob: 9fd0789e32c25fbb79feae4a5658dc70142fdd36 [file] [log] [blame]
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00001# Copyright © 2017 Amdocs, Bell Canada
Nishukumar376ba1e2018-08-03 09:17:23 +00002# Modifications Copyright © 2018 AT&T
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00003#
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
kj41ef22e2018-04-02 13:34:07 +030016#################################################################
17# Global configuration defaults.
18#################################################################
19global:
20 nodePortPrefix: 302
kj41ef22e2018-04-02 13:34:07 +030021 loggingRepository: docker.elastic.co
22 loggingImage: beats/filebeat:5.5.0
Bin Yanga20f07b2019-09-30 01:30:13 +000023 artifactImage: onap/multicloud/framework-artifactbroker:1.4.2
Kiran Kamineni60f72472018-12-18 13:30:38 -080024 prometheus:
25 enabled: false
BorislavG5f3b6192018-03-25 18:12:38 +030026
kj41ef22e2018-04-02 13:34:07 +030027#################################################################
28# Application configuration defaults.
29#################################################################
30# application image
31repository: nexus3.onap.org:10001
Bin Yanga20f07b2019-09-30 01:30:13 +000032image: onap/multicloud/framework:1.4.2
kj41ef22e2018-04-02 13:34:07 +030033pullPolicy: Always
34
Huabing Zhao89577802018-07-30 09:41:17 +000035#Istio sidecar injection policy
36istioSidecar: true
37
kj41ef22e2018-04-02 13:34:07 +030038# application configuration
BorislavG5f3b6192018-03-25 18:12:38 +030039config:
kj41ef22e2018-04-02 13:34:07 +030040 msbgateway: msb-iag
41 msbPort: 80
BorislavG5f3b6192018-03-25 18:12:38 +030042 logstashServiceName: log-ls
43 logstashPort: 5044
kj41ef22e2018-04-02 13:34:07 +030044 aai:
45 port: 8443
Bin Yang4884afa2018-05-23 18:30:31 +000046 schemaVersion: v13
kj41ef22e2018-04-02 13:34:07 +030047 username: AAI
48 password: AAI
49
50# default number of instances
51replicaCount: 1
52
53nodeSelector: {}
54
55affinity: {}
56
57# probe configuration parameters
58liveness:
59 initialDelaySeconds: 30
60 periodSeconds: 10
61 timeoutSeconds: 10
62 successThreshold: 1
63 failureThreshold: 5
64 enabled: true
65
66service:
Bin Yang9ea6b402019-05-08 02:09:38 +000067 type: ClusterIP
kj41ef22e2018-04-02 13:34:07 +030068 name: multicloud
Bin Yang0c54f182018-10-09 03:27:40 +000069 portName: multicloud-framework
kj41ef22e2018-04-02 13:34:07 +030070 externalPort: 9001
71 internalPort: 9001
72 nodePort: 91
73
74ingress:
75 enabled: false
76
Mukul62927a12018-09-11 11:42:00 +000077# Resource Limit flavor -By Default using small
78flavor: small
79# Segregation for Different environment (Small and Large)
80resources:
81 small:
82 limits:
83 cpu: 1
84 memory: 4Gi
85 requests:
86 cpu: 10m
87 memory: 1Gi
88 large:
89 limits:
90 cpu: 2
91 memory: 8Gi
92 requests:
93 cpu: 20m
94 memory: 2Gi
Bin Yang0c54f182018-10-09 03:27:40 +000095 unlimited: {}