Merge "[DMAAP] DMaaP ServiceMesh compatibility"
[oom.git] / kubernetes / multicloud / components / multicloud-starlingx / values.yaml
1 # Copyright (c) 2019 Intel Corporation.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 #################################################################
16 # Global configuration defaults.
17 #################################################################
18 global:
19   nodePortPrefixExt: 304
20   artifactImage: onap/multicloud/framework-artifactbroker:1.7.3
21
22 #################################################################
23 # Application configuration defaults.
24 #################################################################
25 # application image
26 repository: nexus3.onap.org:10001
27 image: onap/multicloud/openstack-starlingx:1.5.7
28 pullPolicy: Always
29
30 #Istio sidecar injection policy
31 istioSidecar: false
32
33 # application configuration
34 config:
35   ssl_enabled: true
36   msbprotocol: https
37   msbgateway: msb-iag
38   msbPort: 443
39   aai:
40     port: 8443
41     schemaVersion: v13
42     username: AAI
43     password: AAI
44
45 # default number of instances
46 replicaCount: 1
47
48 nodeSelector: {}
49
50 affinity: {}
51
52 # probe configuration parameters
53 liveness:
54   initialDelaySeconds: 30
55   periodSeconds: 10
56   timeoutSeconds: 10
57   successThreshold: 1
58   failureThreshold: 5
59   enabled: true
60
61 service:
62   type: ClusterIP
63   name: multicloud-starlingx
64   portName: multicloud-starlingx
65   externalPort: 9009
66   internalPort: 9009
67   nodePort: 85
68
69 ingress:
70   enabled: false
71
72 # Resource Limit flavor -By Default using small
73 flavor: small
74 # Segregation for Different environment (Small and Large)
75 resources:
76   small:
77     limits:
78       cpu: 1
79       memory: 4Gi
80     requests:
81       cpu: 10m
82       memory: 1Gi
83   large:
84     limits:
85       cpu: 2
86       memory: 8Gi
87     requests:
88       cpu: 20m
89       memory: 2Gi
90   unlimited: {}
91
92 # memcached image resource
93 memcached: memcached:alpine3.15
94
95 #Pods Service Account
96 serviceAccount:
97   nameOverride: multicloud-starlingx
98   roles:
99     - read
100
101 #Log configuration
102 log:
103   path: /var/log/onap
104 logConfigMapNamePrefix: '{{ include "common.fullname" . }}'