blob: 50ced500d523194442ee32f263af012ce3486c6c [file] [log] [blame]
Huang Haibin5978c462018-09-28 10:24:46 +08001# Copyright (c) 2018 Intel Corporation.
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15#################################################################
16# Global configuration defaults.
17#################################################################
18global:
19 nodePortPrefix: 302
20
21#################################################################
22# Application configuration defaults.
23#################################################################
24# application image
25repository: nexus3.onap.org:10001
Bin Yangca73cd32020-03-10 22:56:56 +080026image: onap/multicloud/openstack-pike:1.5.5
Huang Haibin5978c462018-09-28 10:24:46 +080027pullPolicy: Always
28
29#Istio sidecar injection policy
30istioSidecar: true
31
32# application configuration
33config:
Bin Yang7c309a52020-09-08 11:20:43 +080034 ssl_enabled: false
35 msbprotocol: https
Huang Haibin5978c462018-09-28 10:24:46 +080036 msbgateway: msb-iag
Bin Yang7c309a52020-09-08 11:20:43 +080037 msbPort: 443
Huang Haibin5978c462018-09-28 10:24:46 +080038 aai:
39 port: 8443
40 schemaVersion: v13
41 username: AAI
42 password: AAI
43
44# default number of instances
45replicaCount: 1
46
47nodeSelector: {}
48
49affinity: {}
50
51# probe configuration parameters
52liveness:
53 initialDelaySeconds: 30
54 periodSeconds: 10
55 timeoutSeconds: 10
56 successThreshold: 1
57 failureThreshold: 5
58 enabled: true
59
60service:
Bin Yang9ea6b402019-05-08 02:09:38 +000061 type: ClusterIP
Huang Haibin5978c462018-09-28 10:24:46 +080062 name: multicloud-pike
63 portName: multicloud-pike
64 externalPort: 9007
65 internalPort: 9007
66 nodePort: 96
67
68ingress:
69 enabled: false
70
71# Resource Limit flavor -By Default using small
72flavor: small
73# Segregation for Different environment (Small and Large)
74resources:
75 small:
76 limits:
77 cpu: 1
78 memory: 4Gi
79 requests:
80 cpu: 10m
81 memory: 1Gi
82 large:
83 limits:
84 cpu: 2
85 memory: 8Gi
86 requests:
87 cpu: 20m
88 memory: 2Gi
89 unlimited: {}