Merge "[DMAAP] DMaaP ServiceMesh compatibility"
[oom.git] / kubernetes / multicloud / components / 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   artifactImage: onap/multicloud/framework-artifactbroker:1.7.3
22   persistence: {}
23
24 #################################################################
25 # Application configuration defaults.
26 #################################################################
27 # application image
28 image: onap/multicloud/openstack-windriver:1.5.7
29 pullPolicy: Always
30
31 #Istio sidecar injection policy
32 istioSidecar: true
33
34 # application configuration
35 config:
36   ssl_enabled: true
37   msbprotocol: https
38   msbgateway: msb-iag
39   msbPort: 443
40   aai:
41     port: 8443
42     schemaVersion: v13
43     username: AAI
44     password: AAI
45
46 service:
47   type: ClusterIP
48   name: multicloud-titaniumcloud
49   portName: multicloud-titaniumcloud
50   externalPort: 9005
51   internalPort: 9005
52   nodePort: 94
53
54 # default number of instances
55 replicaCount: 1
56
57 nodeSelector: {}
58
59 affinity: {}
60
61 # probe configuration parameters
62 liveness:
63   initialDelaySeconds: 30
64   periodSeconds: 10
65   timeoutSeconds: 10
66   successThreshold: 1
67   failureThreshold: 5
68   enabled: true
69
70 ingress:
71   enabled: false
72
73 persistence:
74   enabled: true
75   mountPath: /dockerdata-nfs
76   mountSubPath: multicloud-windriver/data
77   volumeReclaimPolicy: Retain
78   accessMode: ReadWriteOnce
79   size: 5Gi
80
81 # Resource Limit flavor -By Default using small
82 flavor: small
83 # Segregation for Different environment (Small and Large)
84 resources:
85   small:
86     limits:
87       cpu: 1
88       memory: 4Gi
89     requests:
90       cpu: 10m
91       memory: 1Gi
92   large:
93     limits:
94       cpu: 2
95       memory: 8Gi
96     requests:
97       cpu: 20m
98       memory: 2Gi
99   unlimited: {}
100
101 # memcached image resource
102 memcached: memcached:alpine3.15
103
104 #Pods Service Account
105 serviceAccount:
106   nameOverride: multicloud-windriver
107   roles:
108     - read
109
110 #Log configuration
111 log:
112   path: /var/log/onap
113 logConfigMapNamePrefix: '{{ include "common.fullname" . }}'