Removed use of vfc-redis from etsicatalog component
[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   ubuntuInitRepository: oomk8s
22   ubuntuInitImage: ubuntu-init:1.0.0
23
24 #################################################################
25 # Application configuration defaults.
26 #################################################################
27 # application image
28 repository: nexus3.onap.org:10001
29 image: onap/multicloud/openstack-windriver:1.4.1
30 pullPolicy: Always
31
32 #Istio sidecar injection policy
33 istioSidecar: true
34
35 # application configuration
36 config:
37   msbgateway: msb-iag
38   msbPort: 80
39   aai:
40     port: 8443
41     schemaVersion: v13
42     username: AAI
43     password: AAI
44
45 service:
46   type: ClusterIP
47   name: multicloud-titaniumcloud
48   portName: multicloud-titaniumcloud
49   externalPort: 9005
50   internalPort: 9005
51   nodePort: 94
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 ingress:
70   enabled: false
71
72 persistence:
73   enabled: true
74   mountPath: /dockerdata-nfs
75   mountSubPath: multicloud-windriver/data
76   volumeReclaimPolicy: Retain
77   accessMode: ReadWriteOnce
78   size: 5Gi
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: {}