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