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