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