blob: 8ab4d56010497c667325b7a138610813fd432dfd [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 Yangca73cd32020-03-10 22:56:56 +080029image: onap/multicloud/openstack-windriver:1.5.5
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:
Bin Yang842a4842020-02-04 01:03:14 +080037 ssl_enabled: true
38 msbprotocol: https
kj41ef22e2018-04-02 13:34:07 +030039 msbgateway: msb-iag
Bin Yang842a4842020-02-04 01:03:14 +080040 msbPort: 443
kj41ef22e2018-04-02 13:34:07 +030041 aai:
42 port: 8443
Bin Yang4884afa2018-05-23 18:30:31 +000043 schemaVersion: v13
kj41ef22e2018-04-02 13:34:07 +030044 username: AAI
45 password: AAI
46
47service:
Bin Yang9ea6b402019-05-08 02:09:38 +000048 type: ClusterIP
Bin Yang8858ebd2018-09-03 10:39:29 +000049 name: multicloud-titaniumcloud
Bin Yang0c54f182018-10-09 03:27:40 +000050 portName: multicloud-titaniumcloud
kj41ef22e2018-04-02 13:34:07 +030051 externalPort: 9005
52 internalPort: 9005
53 nodePort: 94
54
55# default number of instances
56replicaCount: 1
57
58nodeSelector: {}
59
60affinity: {}
61
62# probe configuration parameters
63liveness:
64 initialDelaySeconds: 30
65 periodSeconds: 10
66 timeoutSeconds: 10
67 successThreshold: 1
68 failureThreshold: 5
69 enabled: true
70
Pradeep Pateld5187f92018-04-26 06:07:56 +000071ingress:
72 enabled: false
73
Liang Dingbacdd452019-09-04 09:55:35 -070074persistence:
75 enabled: true
76 mountPath: /dockerdata-nfs
77 mountSubPath: multicloud-windriver/data
78 volumeReclaimPolicy: Retain
79 accessMode: ReadWriteOnce
80 size: 5Gi
81
Mukul62927a12018-09-11 11:42:00 +000082# Resource Limit flavor -By Default using small
83flavor: small
84# Segregation for Different environment (Small and Large)
85resources:
86 small:
87 limits:
88 cpu: 1
89 memory: 4Gi
90 requests:
91 cpu: 10m
92 memory: 1Gi
93 large:
94 limits:
95 cpu: 2
96 memory: 8Gi
97 requests:
98 cpu: 20m
99 memory: 2Gi
Bin Yang0c54f182018-10-09 03:27:40 +0000100 unlimited: {}