d72b1a2b5143225942e2996fd52f5e6b1808576b
[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.3.3
24   prometheus:
25     enabled: false
26
27 #################################################################
28 # Application configuration defaults.
29 #################################################################
30 # application image
31 repository: nexus3.onap.org:10001
32 image: onap/multicloud/framework:1.3.1
33 pullPolicy: Always
34
35 #Istio sidecar injection policy
36 istioSidecar: true
37
38 # application configuration
39 config:
40   msbgateway: msb-iag
41   msbPort: 80
42   logstashServiceName: log-ls
43   logstashPort: 5044
44   aai:
45     port: 8443
46     schemaVersion: v13
47     username: AAI
48     password: AAI
49
50 # default number of instances
51 replicaCount: 1
52
53 nodeSelector: {}
54
55 affinity: {}
56
57 # probe configuration parameters
58 liveness:
59   initialDelaySeconds: 30
60   periodSeconds: 10
61   timeoutSeconds: 10
62   successThreshold: 1
63   failureThreshold: 5
64   enabled: true
65
66 service:
67   type: ClusterIP
68   name: multicloud
69   portName: multicloud-framework
70   externalPort: 9001
71   internalPort: 9001
72   nodePort: 91
73
74 ingress:
75   enabled: false
76
77 # Resource Limit flavor -By Default using small
78 flavor: small
79 # Segregation for Different environment (Small and Large)
80 resources:
81   small:
82     limits:
83       cpu: 1
84       memory: 4Gi
85     requests:
86       cpu: 10m
87       memory: 1Gi
88   large:
89     limits:
90       cpu: 2
91       memory: 8Gi
92     requests:
93       cpu: 20m
94       memory: 2Gi
95   unlimited: {}