blob: 8216962b2a9dfbcf8499670f58deb4ee85651cca [file] [log] [blame]
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00001# Copyright © 2017 Amdocs, Bell Canada
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
kj41ef22e2018-04-02 13:34:07 +030015#################################################################
16# Global configuration defaults.
17#################################################################
18global:
19 nodePortPrefix: 302
kj41ef22e2018-04-02 13:34:07 +030020 loggingRepository: docker.elastic.co
21 loggingImage: beats/filebeat:5.5.0
BorislavG5f3b6192018-03-25 18:12:38 +030022
kj41ef22e2018-04-02 13:34:07 +030023#################################################################
24# Application configuration defaults.
25#################################################################
26# application image
27repository: nexus3.onap.org:10001
Li Xinhui2d8c80d2018-06-06 14:39:52 +080028image: onap/multicloud/framework:1.1.2
kj41ef22e2018-04-02 13:34:07 +030029pullPolicy: Always
30
Huabing Zhao89577802018-07-30 09:41:17 +000031#Istio sidecar injection policy
32istioSidecar: true
33
kj41ef22e2018-04-02 13:34:07 +030034# application configuration
BorislavG5f3b6192018-03-25 18:12:38 +030035config:
kj41ef22e2018-04-02 13:34:07 +030036 msbgateway: msb-iag
37 msbPort: 80
BorislavG5f3b6192018-03-25 18:12:38 +030038 logstashServiceName: log-ls
39 logstashPort: 5044
kj41ef22e2018-04-02 13:34:07 +030040 aai:
41 port: 8443
Bin Yang4884afa2018-05-23 18:30:31 +000042 schemaVersion: v13
kj41ef22e2018-04-02 13:34:07 +030043 username: AAI
44 password: AAI
45
46# default number of instances
47replicaCount: 1
48
49nodeSelector: {}
50
51affinity: {}
52
53# probe configuration parameters
54liveness:
55 initialDelaySeconds: 30
56 periodSeconds: 10
57 timeoutSeconds: 10
58 successThreshold: 1
59 failureThreshold: 5
60 enabled: true
61
62service:
63 type: NodePort
64 name: multicloud
65 externalPort: 9001
66 internalPort: 9001
67 nodePort: 91
68
69ingress:
70 enabled: false
71
72resources: {}
73 # We usually recommend not to specify default resources and to leave this as a conscious
74 # choice for the user. This also increases chances charts run on environments with little
75 # resources, such as Minikube. If you do want to specify resources, uncomment the following
76 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
77 #
78 # Example:
79 # Configure resource requests and limits
80 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
81 # Minimum memory for development is 2 CPU cores and 4GB memory
82 # Minimum memory for production is 4 CPU cores and 8GB memory
83#resources:
84# limits:
85# cpu: 2
86# memory: 4Gi
87# requests:
88# cpu: 2
89# memory: 4Gi