blob: e25a96ba05924cbd3eaffc52f518a1bb5af21f3f [file] [log] [blame]
kj41ef22e2018-04-02 13:34:07 +03001# Copyright © 2017 Amdocs, Bell Canada
Nishukumar376ba1e2018-08-03 09:17:23 +00002# Modifications Copyright © 2018 AT&T
kj41ef22e2018-04-02 13:34:07 +03003#
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#################################################################
19global:
20 nodePortPrefix: 302
Sylvain Desbureaux37dc40c2020-11-21 22:46:57 +010021 artifactImage: onap/multicloud/framework-artifactbroker:1.6.0
22 persistence: {}
kj41ef22e2018-04-02 13:34:07 +030023
24#################################################################
25# Application configuration defaults.
26#################################################################
27# application image
Bin Yangca73cd32020-03-10 22:56:56 +080028image: onap/multicloud/openstack-windriver:1.5.5
kj41ef22e2018-04-02 13:34:07 +030029pullPolicy: Always
30
Huabing Zhao89577802018-07-30 09:41:17 +000031#Istio sidecar injection policy
32istioSidecar: true
33
kj41ef22e2018-04-02 13:34:07 +030034# application configuration
35config:
Bin Yang842a4842020-02-04 01:03:14 +080036 ssl_enabled: true
37 msbprotocol: https
kj41ef22e2018-04-02 13:34:07 +030038 msbgateway: msb-iag
Bin Yang842a4842020-02-04 01:03:14 +080039 msbPort: 443
kj41ef22e2018-04-02 13:34:07 +030040 aai:
41 port: 8443
Bin Yang4884afa2018-05-23 18:30:31 +000042 schemaVersion: v13
kj41ef22e2018-04-02 13:34:07 +030043 username: AAI
44 password: AAI
45
46service:
Bin Yang9ea6b402019-05-08 02:09:38 +000047 type: ClusterIP
Bin Yang8858ebd2018-09-03 10:39:29 +000048 name: multicloud-titaniumcloud
Bin Yang0c54f182018-10-09 03:27:40 +000049 portName: multicloud-titaniumcloud
kj41ef22e2018-04-02 13:34:07 +030050 externalPort: 9005
51 internalPort: 9005
52 nodePort: 94
53
54# default number of instances
55replicaCount: 1
56
57nodeSelector: {}
58
59affinity: {}
60
61# probe configuration parameters
62liveness:
63 initialDelaySeconds: 30
64 periodSeconds: 10
65 timeoutSeconds: 10
66 successThreshold: 1
67 failureThreshold: 5
68 enabled: true
69
Pradeep Pateld5187f92018-04-26 06:07:56 +000070ingress:
71 enabled: false
72
Liang Dingbacdd452019-09-04 09:55:35 -070073persistence:
74 enabled: true
75 mountPath: /dockerdata-nfs
76 mountSubPath: multicloud-windriver/data
77 volumeReclaimPolicy: Retain
78 accessMode: ReadWriteOnce
79 size: 5Gi
80
Mukul62927a12018-09-11 11:42:00 +000081# Resource Limit flavor -By Default using small
82flavor: small
83# Segregation for Different environment (Small and Large)
84resources:
85 small:
86 limits:
87 cpu: 1
88 memory: 4Gi
89 requests:
90 cpu: 10m
91 memory: 1Gi
92 large:
93 limits:
94 cpu: 2
95 memory: 8Gi
96 requests:
97 cpu: 20m
98 memory: 2Gi
Bin Yang0c54f182018-10-09 03:27:40 +000099 unlimited: {}