0ff561c800cf2031ae3a69a9f7652bea7b260242
[oom.git] / kubernetes / multicloud / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications Copyright © 2018 AT&T
3 #
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 #################################################################
19 global:
20   nodePortPrefix: 302
21   loggingRepository: docker.elastic.co
22   loggingImage: beats/filebeat:5.5.0
23   artifactImage: onap/multicloud/framework-artifactbroker:1.6.0
24   prometheus:
25     enabled: false
26   persistence: {}
27
28 #################################################################
29 # Application configuration defaults.
30 #################################################################
31 # application image
32 repository: nexus3.onap.org:10001
33 image: onap/multicloud/framework:1.6.0
34 pullPolicy: Always
35
36 #Istio sidecar injection policy
37 istioSidecar: true
38
39 # application configuration
40 config:
41   ssl_enabled: true
42   msbprotocol: https
43   msbgateway: msb-iag
44   msbPort: 443
45   logstashServiceName: log-ls
46   logstashPort: 5044
47   aai:
48     port: 8443
49     schemaVersion: v13
50     username: AAI
51     password: AAI
52
53 # default number of instances
54 replicaCount: 1
55
56 nodeSelector: {}
57
58 affinity: {}
59
60 # probe configuration parameters
61 liveness:
62   initialDelaySeconds: 30
63   periodSeconds: 10
64   timeoutSeconds: 10
65   successThreshold: 1
66   failureThreshold: 5
67   enabled: true
68
69 service:
70   type: ClusterIP
71   name: multicloud
72   portName: multicloud-framework
73   externalPort: 9001
74   internalPort: 9001
75   nodePort: 91
76
77 ingress:
78   enabled: false
79
80 # Resource Limit flavor -By Default using small
81 flavor: small
82 # Segregation for Different environment (Small and Large)
83 resources:
84   small:
85     limits:
86       cpu: 1
87       memory: 4Gi
88     requests:
89       cpu: 10m
90       memory: 1Gi
91   large:
92     limits:
93       cpu: 2
94       memory: 8Gi
95     requests:
96       cpu: 20m
97       memory: 2Gi
98   unlimited: {}