blob: 8ebcb826ae6241d36f0736cc9f616adf09791661 [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
Kiran Kamineni60f72472018-12-18 13:30:38 -080023 prometheus:
24 enabled: false
BorislavG5f3b6192018-03-25 18:12:38 +030025
kj41ef22e2018-04-02 13:34:07 +030026#################################################################
27# Application configuration defaults.
28#################################################################
29# application image
30repository: nexus3.onap.org:10001
Bin Yangcf22cc02018-11-27 12:38:41 +000031image: onap/multicloud/framework:1.2.2
kj41ef22e2018-04-02 13:34:07 +030032pullPolicy: Always
33
Huabing Zhao89577802018-07-30 09:41:17 +000034#Istio sidecar injection policy
35istioSidecar: true
36
kj41ef22e2018-04-02 13:34:07 +030037# application configuration
BorislavG5f3b6192018-03-25 18:12:38 +030038config:
kj41ef22e2018-04-02 13:34:07 +030039 msbgateway: msb-iag
40 msbPort: 80
BorislavG5f3b6192018-03-25 18:12:38 +030041 logstashServiceName: log-ls
42 logstashPort: 5044
kj41ef22e2018-04-02 13:34:07 +030043 aai:
44 port: 8443
Bin Yang4884afa2018-05-23 18:30:31 +000045 schemaVersion: v13
kj41ef22e2018-04-02 13:34:07 +030046 username: AAI
47 password: AAI
48
49# default number of instances
50replicaCount: 1
51
52nodeSelector: {}
53
54affinity: {}
55
56# probe configuration parameters
57liveness:
58 initialDelaySeconds: 30
59 periodSeconds: 10
60 timeoutSeconds: 10
61 successThreshold: 1
62 failureThreshold: 5
63 enabled: true
64
65service:
66 type: NodePort
67 name: multicloud
Bin Yang0c54f182018-10-09 03:27:40 +000068 portName: multicloud-framework
kj41ef22e2018-04-02 13:34:07 +030069 externalPort: 9001
70 internalPort: 9001
71 nodePort: 91
72
73ingress:
74 enabled: false
75
Mukul62927a12018-09-11 11:42:00 +000076# Resource Limit flavor -By Default using small
77flavor: small
78# Segregation for Different environment (Small and Large)
79resources:
80 small:
81 limits:
82 cpu: 1
83 memory: 4Gi
84 requests:
85 cpu: 10m
86 memory: 1Gi
87 large:
88 limits:
89 cpu: 2
90 memory: 8Gi
91 requests:
92 cpu: 20m
93 memory: 2Gi
Bin Yang0c54f182018-10-09 03:27:40 +000094 unlimited: {}