blob: 4ebf84399f4e48a9b92f1f45e221beca5787535c [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
kj41ef22e2018-04-02 13:34:07 +030021
22#################################################################
23# Application configuration defaults.
24#################################################################
25# application image
26repository: nexus3.onap.org:10001
Bin Yang8858ebd2018-09-03 10:39:29 +000027image: onap/multicloud/openstack-windriver:1.2.0-STAGING
kj41ef22e2018-04-02 13:34:07 +030028pullPolicy: Always
29
Huabing Zhao89577802018-07-30 09:41:17 +000030#Istio sidecar injection policy
31istioSidecar: true
32
kj41ef22e2018-04-02 13:34:07 +030033# application configuration
34config:
35 msbgateway: msb-iag
36 msbPort: 80
37 aai:
38 port: 8443
Bin Yang4884afa2018-05-23 18:30:31 +000039 schemaVersion: v13
kj41ef22e2018-04-02 13:34:07 +030040 username: AAI
41 password: AAI
42
43service:
44 type: NodePort
Bin Yang8858ebd2018-09-03 10:39:29 +000045 name: multicloud-titaniumcloud
kj41ef22e2018-04-02 13:34:07 +030046 externalPort: 9005
47 internalPort: 9005
48 nodePort: 94
49
50# default number of instances
51replicaCount: 1
52
53nodeSelector: {}
54
55affinity: {}
56
57# probe configuration parameters
58liveness:
59 initialDelaySeconds: 30
60 periodSeconds: 10
61 timeoutSeconds: 10
62 successThreshold: 1
63 failureThreshold: 5
64 enabled: true
65
Pradeep Pateld5187f92018-04-26 06:07:56 +000066ingress:
67 enabled: false
68
Mukul62927a12018-09-11 11:42:00 +000069# Resource Limit flavor -By Default using small
70flavor: small
71# Segregation for Different environment (Small and Large)
72resources:
73 small:
74 limits:
75 cpu: 1
76 memory: 4Gi
77 requests:
78 cpu: 10m
79 memory: 1Gi
80 large:
81 limits:
82 cpu: 2
83 memory: 8Gi
84 requests:
85 cpu: 20m
86 memory: 2Gi
Mandeep Khinda60d36d42018-09-24 15:15:48 +000087 unlimited: {}