blob: d075291db2d8fb6d0a080b796c52229342804106 [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 Yang2e5ecc32020-01-23 02:46:07 +000023 artifactImage: onap/multicloud/framework-artifactbroker:1.5.1
Kiran Kamineni60f72472018-12-18 13:30:38 -080024 prometheus:
25 enabled: false
Sylvain Desbureauxa1f93012019-12-09 11:43:47 +010026 persistence: {}
BorislavG5f3b6192018-03-25 18:12:38 +030027
kj41ef22e2018-04-02 13:34:07 +030028#################################################################
29# Application configuration defaults.
30#################################################################
31# application image
32repository: nexus3.onap.org:10001
Bin Yang2e5ecc32020-01-23 02:46:07 +000033image: onap/multicloud/framework:1.5.1
kj41ef22e2018-04-02 13:34:07 +030034pullPolicy: Always
35
Huabing Zhao89577802018-07-30 09:41:17 +000036#Istio sidecar injection policy
37istioSidecar: true
38
kj41ef22e2018-04-02 13:34:07 +030039# application configuration
BorislavG5f3b6192018-03-25 18:12:38 +030040config:
Bin Yang2e5ecc32020-01-23 02:46:07 +000041 ssl_enabled: true
42 msbprotocol: https
kj41ef22e2018-04-02 13:34:07 +030043 msbgateway: msb-iag
Bin Yang2e5ecc32020-01-23 02:46:07 +000044 msbPort: 443
BorislavG5f3b6192018-03-25 18:12:38 +030045 logstashServiceName: log-ls
46 logstashPort: 5044
kj41ef22e2018-04-02 13:34:07 +030047 aai:
48 port: 8443
Bin Yang4884afa2018-05-23 18:30:31 +000049 schemaVersion: v13
kj41ef22e2018-04-02 13:34:07 +030050 username: AAI
51 password: AAI
52
53# default number of instances
54replicaCount: 1
55
56nodeSelector: {}
57
58affinity: {}
59
60# probe configuration parameters
61liveness:
62 initialDelaySeconds: 30
63 periodSeconds: 10
64 timeoutSeconds: 10
65 successThreshold: 1
66 failureThreshold: 5
67 enabled: true
68
69service:
Bin Yang9ea6b402019-05-08 02:09:38 +000070 type: ClusterIP
kj41ef22e2018-04-02 13:34:07 +030071 name: multicloud
Bin Yang0c54f182018-10-09 03:27:40 +000072 portName: multicloud-framework
kj41ef22e2018-04-02 13:34:07 +030073 externalPort: 9001
74 internalPort: 9001
75 nodePort: 91
76
77ingress:
78 enabled: false
79
Mukul62927a12018-09-11 11:42:00 +000080# Resource Limit flavor -By Default using small
81flavor: small
82# Segregation for Different environment (Small and Large)
83resources:
84 small:
85 limits:
86 cpu: 1
87 memory: 4Gi
88 requests:
89 cpu: 10m
90 memory: 1Gi
91 large:
92 limits:
93 cpu: 2
94 memory: 8Gi
95 requests:
96 cpu: 20m
97 memory: 2Gi
Bin Yang0c54f182018-10-09 03:27:40 +000098 unlimited: {}