blob: 1fe7775aed50615e1d69d618acd210311a0dbed1 [file] [log] [blame]
Haibin Huang110eabe2019-01-24 11:14:38 +08001# 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#################################################################
18global:
19 nodePortPrefixExt: 304
efiacorc8c33162022-11-25 11:36:52 +000020 artifactImage: onap/multicloud/framework-artifactbroker:1.9.0
Haibin Huang110eabe2019-01-24 11:14:38 +080021
22#################################################################
23# Application configuration defaults.
24#################################################################
25# application image
26repository: nexus3.onap.org:10001
Bin Yangdf4fc032022-03-22 16:08:22 +080027image: onap/multicloud/openstack-starlingx:1.5.7
Haibin Huang110eabe2019-01-24 11:14:38 +080028pullPolicy: Always
29
30#Istio sidecar injection policy
31istioSidecar: false
32
33# application configuration
34config:
Bin Yang842a4842020-02-04 01:03:14 +080035 ssl_enabled: true
Haibin Huang110eabe2019-01-24 11:14:38 +080036 msbgateway: msb-iag
Bin Yang842a4842020-02-04 01:03:14 +080037 msbPort: 443
Andreas Geisslerdfa23c82022-05-13 16:54:43 +020038 msbPlainPort: 80
Haibin Huang110eabe2019-01-24 11:14:38 +080039 aai:
Andreas Geisslerdfa23c82022-05-13 16:54:43 +020040 aaiPort: 8443
41 aaiPlainPort: 8080
Haibin Huang110eabe2019-01-24 11:14:38 +080042 schemaVersion: v13
43 username: AAI
44 password: AAI
45
46# default number of instances
47replicaCount: 1
48
49nodeSelector: {}
50
51affinity: {}
52
53# probe configuration parameters
54liveness:
55 initialDelaySeconds: 30
56 periodSeconds: 10
57 timeoutSeconds: 10
58 successThreshold: 1
59 failureThreshold: 5
60 enabled: true
61
62service:
Bin Yang9ea6b402019-05-08 02:09:38 +000063 type: ClusterIP
Haibin Huang110eabe2019-01-24 11:14:38 +080064 name: multicloud-starlingx
65 portName: multicloud-starlingx
66 externalPort: 9009
67 internalPort: 9009
68 nodePort: 85
69
70ingress:
71 enabled: false
72
73# Resource Limit flavor -By Default using small
74flavor: small
75# Segregation for Different environment (Small and Large)
76resources:
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: {}
farida azmy72513552021-10-12 18:55:21 +020092
Bin Yangdf4fc032022-03-22 16:08:22 +080093# memcached image resource
94memcached: memcached:alpine3.15
95
farida azmy72513552021-10-12 18:55:21 +020096#Pods Service Account
97serviceAccount:
98 nameOverride: multicloud-starlingx
99 roles:
100 - read
Maciej Wereski989c91c2021-11-17 16:45:14 +0100101
102#Log configuration
103log:
104 path: /var/log/onap
105logConfigMapNamePrefix: '{{ include "common.fullname" . }}'