blob: abc77260adaac7e1c014f688410995bf321a0f93 [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
Liang Dingbacdd452019-09-04 09:55:35 -070021 ubuntuInitRepository: oomk8s
22 ubuntuInitImage: ubuntu-init:1.0.0
kj41ef22e2018-04-02 13:34:07 +030023
24#################################################################
25# Application configuration defaults.
26#################################################################
27# application image
28repository: nexus3.onap.org:10001
Bin Yangaf9a02e2019-09-09 03:07:05 +000029image: onap/multicloud/openstack-windriver:1.4.1
kj41ef22e2018-04-02 13:34:07 +030030pullPolicy: Always
31
Huabing Zhao89577802018-07-30 09:41:17 +000032#Istio sidecar injection policy
33istioSidecar: true
34
kj41ef22e2018-04-02 13:34:07 +030035# application configuration
36config:
37 msbgateway: msb-iag
38 msbPort: 80
39 aai:
40 port: 8443
Bin Yang4884afa2018-05-23 18:30:31 +000041 schemaVersion: v13
kj41ef22e2018-04-02 13:34:07 +030042 username: AAI
43 password: AAI
44
45service:
Bin Yang9ea6b402019-05-08 02:09:38 +000046 type: ClusterIP
Bin Yang8858ebd2018-09-03 10:39:29 +000047 name: multicloud-titaniumcloud
Bin Yang0c54f182018-10-09 03:27:40 +000048 portName: multicloud-titaniumcloud
kj41ef22e2018-04-02 13:34:07 +030049 externalPort: 9005
50 internalPort: 9005
51 nodePort: 94
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
Pradeep Pateld5187f92018-04-26 06:07:56 +000069ingress:
70 enabled: false
71
Liang Dingbacdd452019-09-04 09:55:35 -070072persistence:
73 enabled: true
74 mountPath: /dockerdata-nfs
75 mountSubPath: multicloud-windriver/data
76 volumeReclaimPolicy: Retain
77 accessMode: ReadWriteOnce
78 size: 5Gi
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: {}