blob: 33802937cd08fa8922386eab1b32bc8ccb10b433 [file] [log] [blame]
kj41ef22e2018-04-02 13:34:07 +03001# Copyright © 2017 Amdocs, Bell Canada
Nishukumar376ba1e2018-08-03 09:17:23 +00002# Modifications Copyright © 2018 AT&T
kj41ef22e2018-04-02 13:34:07 +03003#
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#################################################################
19global:
20 nodePortPrefix: 302
Andreas Geisslerdfa23c82022-05-13 16:54:43 +020021 artifactImage: onap/multicloud/framework-artifactbroker:1.8.1
Sylvain Desbureaux37dc40c2020-11-21 22:46:57 +010022 persistence: {}
kj41ef22e2018-04-02 13:34:07 +030023
24#################################################################
25# Application configuration defaults.
26#################################################################
27# application image
Bin Yangdf4fc032022-03-22 16:08:22 +080028image: onap/multicloud/openstack-windriver:1.5.7
kj41ef22e2018-04-02 13:34:07 +030029pullPolicy: Always
30
Huabing Zhao89577802018-07-30 09:41:17 +000031#Istio sidecar injection policy
32istioSidecar: true
33
kj41ef22e2018-04-02 13:34:07 +030034# application configuration
35config:
Bin Yang842a4842020-02-04 01:03:14 +080036 ssl_enabled: true
kj41ef22e2018-04-02 13:34:07 +030037 msbgateway: msb-iag
Bin Yang842a4842020-02-04 01:03:14 +080038 msbPort: 443
Andreas Geisslerdfa23c82022-05-13 16:54:43 +020039 msbPlainPort: 80
kj41ef22e2018-04-02 13:34:07 +030040 aai:
Andreas Geisslerdfa23c82022-05-13 16:54:43 +020041 aaiPort: 8443
42 aaiPlainPort: 8080
Bin Yang4884afa2018-05-23 18:30:31 +000043 schemaVersion: v13
kj41ef22e2018-04-02 13:34:07 +030044 username: AAI
45 password: AAI
46
47service:
Bin Yang9ea6b402019-05-08 02:09:38 +000048 type: ClusterIP
Bin Yang8858ebd2018-09-03 10:39:29 +000049 name: multicloud-titaniumcloud
Bin Yang0c54f182018-10-09 03:27:40 +000050 portName: multicloud-titaniumcloud
kj41ef22e2018-04-02 13:34:07 +030051 externalPort: 9005
52 internalPort: 9005
53 nodePort: 94
54
55# default number of instances
56replicaCount: 1
57
58nodeSelector: {}
59
60affinity: {}
61
62# probe configuration parameters
63liveness:
64 initialDelaySeconds: 30
65 periodSeconds: 10
66 timeoutSeconds: 10
67 successThreshold: 1
68 failureThreshold: 5
69 enabled: true
70
Pradeep Pateld5187f92018-04-26 06:07:56 +000071ingress:
72 enabled: false
73
Liang Dingbacdd452019-09-04 09:55:35 -070074persistence:
75 enabled: true
76 mountPath: /dockerdata-nfs
77 mountSubPath: multicloud-windriver/data
78 volumeReclaimPolicy: Retain
79 accessMode: ReadWriteOnce
80 size: 5Gi
81
Mukul62927a12018-09-11 11:42:00 +000082# Resource Limit flavor -By Default using small
83flavor: small
84# Segregation for Different environment (Small and Large)
85resources:
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
Bin Yang0c54f182018-10-09 03:27:40 +0000100 unlimited: {}
farida azmy72513552021-10-12 18:55:21 +0200101
Bin Yangdf4fc032022-03-22 16:08:22 +0800102# memcached image resource
103memcached: memcached:alpine3.15
104
farida azmy72513552021-10-12 18:55:21 +0200105#Pods Service Account
106serviceAccount:
107 nameOverride: multicloud-windriver
108 roles:
109 - read
Maciej Wereski989c91c2021-11-17 16:45:14 +0100110
111#Log configuration
112log:
113 path: /var/log/onap
114logConfigMapNamePrefix: '{{ include "common.fullname" . }}'