blob: 645c537eeb7b2f5ddb81638d5694eff7dd92fb0d [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
Haibin Huang110eabe2019-01-24 11:14:38 +080030# application configuration
31config:
32 msbgateway: msb-iag
Andreas Geissler718fb742023-03-09 09:44:02 +010033 msbPort: 80
Haibin Huang110eabe2019-01-24 11:14:38 +080034 aai:
Andreas Geissler718fb742023-03-09 09:44:02 +010035 aaiPort: 80
Haibin Huang110eabe2019-01-24 11:14:38 +080036 schemaVersion: v13
37 username: AAI
38 password: AAI
39
40# default number of instances
41replicaCount: 1
42
43nodeSelector: {}
44
45affinity: {}
46
47# probe configuration parameters
48liveness:
49 initialDelaySeconds: 30
50 periodSeconds: 10
51 timeoutSeconds: 10
52 successThreshold: 1
53 failureThreshold: 5
54 enabled: true
55
56service:
Andreas Geissler718fb742023-03-09 09:44:02 +010057 type: NodePort
Haibin Huang110eabe2019-01-24 11:14:38 +080058 internalPort: 9009
Andreas Geissler718fb742023-03-09 09:44:02 +010059 ports:
60 - name: http
61 port: 9009
62 nodePort: '85'
63 annotations:
64 msb.onap.org/service-info: |
65 {{ if .Values.global.msbEnabled -}}[
66 {
67 "serviceName": "multicloud-starlingx",
68 "version": "v0",
69 "url": "/api/multicloud-starlingx/v0",
70 "protocol": "REST",
71 "port": "{{ .Values.service.internalPort }}",
72 "enable_ssl": false,
73 "visualRange": "1"
74 },
75 {
76 "serviceName": "multicloud-starlingx",
77 "version": "v1",
78 "url": "/api/multicloud-starlingx/v1",
79 "protocol": "REST",
80 "port": "{{ .Values.service.internalPort }}",
81 "enable_ssl": false,
82 "visualRange": "1"
83 }
84 ]{{ end }}
Haibin Huang110eabe2019-01-24 11:14:38 +080085
86ingress:
87 enabled: false
Andreas Geissler718fb742023-03-09 09:44:02 +010088 service:
89 - baseaddr: 'multicloud-starlingx-api'
90 name: 'multicloud-starlingx'
91 port: 9009
Haibin Huang110eabe2019-01-24 11:14:38 +080092
93# Resource Limit flavor -By Default using small
94flavor: small
95# Segregation for Different environment (Small and Large)
96resources:
97 small:
98 limits:
99 cpu: 1
100 memory: 4Gi
101 requests:
102 cpu: 10m
103 memory: 1Gi
104 large:
105 limits:
106 cpu: 2
107 memory: 8Gi
108 requests:
109 cpu: 20m
110 memory: 2Gi
111 unlimited: {}
farida azmy72513552021-10-12 18:55:21 +0200112
Bin Yangdf4fc032022-03-22 16:08:22 +0800113# memcached image resource
114memcached: memcached:alpine3.15
115
farida azmy72513552021-10-12 18:55:21 +0200116#Pods Service Account
117serviceAccount:
118 nameOverride: multicloud-starlingx
119 roles:
120 - read
Maciej Wereski989c91c2021-11-17 16:45:14 +0100121
122#Log configuration
123log:
124 path: /var/log/onap
125logConfigMapNamePrefix: '{{ include "common.fullname" . }}'