blob: 286f839fe5c3ef227f6a4744deaedaffa29e3040 [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
Gary Wu3ba587d2018-06-06 14:30:43 -070027image: onap/multicloud/openstack-ocata:1.1.2
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
43# default number of instances
44replicaCount: 1
45
46nodeSelector: {}
47
48affinity: {}
49
50# probe configuration parameters
51liveness:
52 initialDelaySeconds: 30
53 periodSeconds: 10
54 timeoutSeconds: 10
55 successThreshold: 1
56 failureThreshold: 5
57 enabled: true
58
59service:
60 type: NodePort
61 name: multicloud-ocata
62 externalPort: 9006
63 internalPort: 9006
64 nodePort: 93
65
Pradeep Pateld5187f92018-04-26 06:07:56 +000066ingress:
67 enabled: false
68
kj41ef22e2018-04-02 13:34:07 +030069resources: {}
70 # We usually recommend not to specify default resources and to leave this as a conscious
71 # choice for the user. This also increases chances charts run on environments with little
72 # resources, such as Minikube. If you do want to specify resources, uncomment the following
73 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
74 #
75 # Example:
76 # Configure resource requests and limits
77 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
78 # Minimum memory for development is 2 CPU cores and 4GB memory
79 # Minimum memory for production is 4 CPU cores and 8GB memory
80#resources:
81# limits:
82# cpu: 2
83# memory: 4Gi
84# requests:
85# cpu: 2
86# memory: 4Gi