blob: f18a090dba2d027c56e5eaa241ef1d341ddfbd12 [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
Lukasz Rajewski84847d42021-10-21 22:44:41 +020020 artifactImage: onap/multicloud/framework-artifactbroker:1.7.1
Haibin Huang110eabe2019-01-24 11:14:38 +080021
22#################################################################
23# Application configuration defaults.
24#################################################################
25# application image
26repository: nexus3.onap.org:10001
Bin Yangda0a1712021-09-14 10:04:16 +080027image: onap/multicloud/openstack-starlingx:1.5.6
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
36 msbprotocol: https
Haibin Huang110eabe2019-01-24 11:14:38 +080037 msbgateway: msb-iag
Bin Yang842a4842020-02-04 01:03:14 +080038 msbPort: 443
Haibin Huang110eabe2019-01-24 11:14:38 +080039 aai:
40 port: 8443
41 schemaVersion: v13
42 username: AAI
43 password: AAI
44
45# default number of instances
46replicaCount: 1
47
48nodeSelector: {}
49
50affinity: {}
51
52# probe configuration parameters
53liveness:
54 initialDelaySeconds: 30
55 periodSeconds: 10
56 timeoutSeconds: 10
57 successThreshold: 1
58 failureThreshold: 5
59 enabled: true
60
61service:
Bin Yang9ea6b402019-05-08 02:09:38 +000062 type: ClusterIP
Haibin Huang110eabe2019-01-24 11:14:38 +080063 name: multicloud-starlingx
64 portName: multicloud-starlingx
65 externalPort: 9009
66 internalPort: 9009
67 nodePort: 85
68
69ingress:
70 enabled: false
71
72# Resource Limit flavor -By Default using small
73flavor: small
74# Segregation for Different environment (Small and Large)
75resources:
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: {}
farida azmy72513552021-10-12 18:55:21 +020091
92#Pods Service Account
93serviceAccount:
94 nameOverride: multicloud-starlingx
95 roles:
96 - read
Maciej Wereski989c91c2021-11-17 16:45:14 +010097
98#Log configuration
99log:
100 path: /var/log/onap
101logConfigMapNamePrefix: '{{ include "common.fullname" . }}'