blob: 4c217dfc337aafee7ef94974b09dd25ea6881d98 [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
20 repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiQCIsImF1dGgiOiJaRzlqYTJWeU9tUnZZMnRsY2c9PSJ9fQ==
21 loggingRepository: docker.elastic.co
22 loggingImage: beats/filebeat:5.5.0
BorislavG5f3b6192018-03-25 18:12:38 +030023
kj41ef22e2018-04-02 13:34:07 +030024#################################################################
25# Application configuration defaults.
26#################################################################
27# application image
28repository: nexus3.onap.org:10001
Gary Wudd568582018-05-08 07:21:20 -070029image: onap/multicloud/framework:1.1.2-STAGING
kj41ef22e2018-04-02 13:34:07 +030030pullPolicy: Always
31
32# application configuration
BorislavG5f3b6192018-03-25 18:12:38 +030033config:
kj41ef22e2018-04-02 13:34:07 +030034 msbgateway: msb-iag
35 msbPort: 80
BorislavG5f3b6192018-03-25 18:12:38 +030036 logstashServiceName: log-ls
37 logstashPort: 5044
kj41ef22e2018-04-02 13:34:07 +030038 aai:
39 port: 8443
40 schemaVersion: v11
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:
61 type: NodePort
62 name: multicloud
63 externalPort: 9001
64 internalPort: 9001
65 nodePort: 91
66
67ingress:
68 enabled: false
69
70resources: {}
71 # We usually recommend not to specify default resources and to leave this as a conscious
72 # choice for the user. This also increases chances charts run on environments with little
73 # resources, such as Minikube. If you do want to specify resources, uncomment the following
74 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
75 #
76 # Example:
77 # Configure resource requests and limits
78 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
79 # Minimum memory for development is 2 CPU cores and 4GB memory
80 # Minimum memory for production is 4 CPU cores and 8GB memory
81#resources:
82# limits:
83# cpu: 2
84# memory: 4Gi
85# requests:
86# cpu: 2
87# memory: 4Gi