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