a328daedc685f7c5c682e78bb6f9522944e7c30c
[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.9.0
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   msbgateway: msb-iag
38   msbPort: 443
39   msbPlainPort: 80
40   aai:
41     aaiPort: 8443
42     aaiPlainPort: 8080
43     schemaVersion: v13
44     username: AAI
45     password: AAI
46
47 service:
48   type: ClusterIP
49   name: multicloud-titaniumcloud
50   portName: multicloud-titaniumcloud
51   externalPort: 9005
52   internalPort: 9005
53   nodePort: 94
54
55 # default number of instances
56 replicaCount: 1
57
58 nodeSelector: {}
59
60 affinity: {}
61
62 # probe configuration parameters
63 liveness:
64   initialDelaySeconds: 30
65   periodSeconds: 10
66   timeoutSeconds: 10
67   successThreshold: 1
68   failureThreshold: 5
69   enabled: true
70
71 ingress:
72   enabled: false
73
74 persistence:
75   enabled: true
76   mountPath: /dockerdata-nfs
77   mountSubPath: multicloud-windriver/data
78   volumeReclaimPolicy: Retain
79   accessMode: ReadWriteOnce
80   size: 5Gi
81
82 # Resource Limit flavor -By Default using small
83 flavor: small
84 # Segregation for Different environment (Small and Large)
85 resources:
86   small:
87     limits:
88       cpu: 1
89       memory: 4Gi
90     requests:
91       cpu: 10m
92       memory: 1Gi
93   large:
94     limits:
95       cpu: 2
96       memory: 8Gi
97     requests:
98       cpu: 20m
99       memory: 2Gi
100   unlimited: {}
101
102 # memcached image resource
103 memcached: memcached:alpine3.15
104
105 #Pods Service Account
106 serviceAccount:
107   nameOverride: multicloud-windriver
108   roles:
109     - read
110
111 #Log configuration
112 log:
113   path: /var/log/onap
114 logConfigMapNamePrefix: '{{ include "common.fullname" . }}'