blob: 9ede0c35b1709cc08ae1c6f63b29c13e5f3e1544 [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
efiacorc8c33162022-11-25 11:36:52 +000021 artifactImage: onap/multicloud/framework-artifactbroker:1.9.0
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
31# application configuration
32config:
Bin Yang842a4842020-02-04 01:03:14 +080033 ssl_enabled: true
kj41ef22e2018-04-02 13:34:07 +030034 msbgateway: msb-iag
Andreas Geissler718fb742023-03-09 09:44:02 +010035 msbPort: 80
kj41ef22e2018-04-02 13:34:07 +030036 aai:
Andreas Geissler718fb742023-03-09 09:44:02 +010037 aaiPort: 80
Bin Yang4884afa2018-05-23 18:30:31 +000038 schemaVersion: v13
kj41ef22e2018-04-02 13:34:07 +030039 username: AAI
40 password: AAI
41
42service:
Andreas Geissler718fb742023-03-09 09:44:02 +010043 type: NodePort
kj41ef22e2018-04-02 13:34:07 +030044 internalPort: 9005
Andreas Geissler718fb742023-03-09 09:44:02 +010045 ports:
46 - name: http
47 port: 9005
48 nodePort: '94'
49 annotations:
50 msb.onap.org/service-info: |
51 {{ if .Values.global.msbEnabled -}}[
52 {
53 "serviceName": "multicloud-titanium_cloud",
54 "version": "v0",
55 "url": "/api/multicloud-titanium_cloud/v0",
56 "protocol": "REST",
57 "port": "{{ .Values.service.internalPort }}",
58 "enable_ssl": false,
59 "visualRange": "1"
60 },
61 {
62 "serviceName": "multicloud-titaniumcloud",
63 "version": "v0",
64 "url": "/api/multicloud-titaniumcloud/v0",
65 "protocol": "REST",
66 "port": "{{ .Values.service.internalPort }}",
67 "enable_ssl": false,
68 "visualRange": "1"
69 },
70 {
71 "serviceName": "multicloud-titaniumcloud",
72 "version": "v1",
73 "url": "/api/multicloud-titaniumcloud/v1",
74 "protocol": "REST",
75 "port": "{{ .Values.service.internalPort }}",
76 "enable_ssl": false,
77 "visualRange": "1"
78 }
79 ]{{ end }}
80
81ingress:
82 enabled: false
83 service:
84 - baseaddr: 'multicloud-titaniumcloud-api'
85 name: 'multicloud-titaniumcloud'
86 port: 9005
kj41ef22e2018-04-02 13:34:07 +030087
88# default number of instances
89replicaCount: 1
90
91nodeSelector: {}
92
93affinity: {}
94
95# probe configuration parameters
96liveness:
97 initialDelaySeconds: 30
98 periodSeconds: 10
99 timeoutSeconds: 10
100 successThreshold: 1
101 failureThreshold: 5
102 enabled: true
103
Liang Dingbacdd452019-09-04 09:55:35 -0700104persistence:
105 enabled: true
106 mountPath: /dockerdata-nfs
107 mountSubPath: multicloud-windriver/data
108 volumeReclaimPolicy: Retain
109 accessMode: ReadWriteOnce
110 size: 5Gi
111
Mukul62927a12018-09-11 11:42:00 +0000112# Resource Limit flavor -By Default using small
113flavor: small
114# Segregation for Different environment (Small and Large)
115resources:
116 small:
117 limits:
118 cpu: 1
119 memory: 4Gi
120 requests:
121 cpu: 10m
122 memory: 1Gi
123 large:
124 limits:
125 cpu: 2
126 memory: 8Gi
127 requests:
128 cpu: 20m
129 memory: 2Gi
Bin Yang0c54f182018-10-09 03:27:40 +0000130 unlimited: {}
farida azmy72513552021-10-12 18:55:21 +0200131
Bin Yangdf4fc032022-03-22 16:08:22 +0800132# memcached image resource
133memcached: memcached:alpine3.15
134
farida azmy72513552021-10-12 18:55:21 +0200135#Pods Service Account
136serviceAccount:
137 nameOverride: multicloud-windriver
138 roles:
139 - read
Maciej Wereski989c91c2021-11-17 16:45:14 +0100140
141#Log configuration
142log:
143 path: /var/log/onap
144logConfigMapNamePrefix: '{{ include "common.fullname" . }}'