blob: 4ed7a64ecbcf842cfb332f9047919f9ac1a91c10 [file] [log] [blame]
Huang Haibin5978c462018-09-28 10:24:46 +08001# Copyright (c) 2018 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 nodePortPrefix: 302
20
21#################################################################
22# Application configuration defaults.
23#################################################################
24# application image
Bin Yangdf4fc032022-03-22 16:08:22 +080025image: onap/multicloud/openstack-pike:1.5.7
Huang Haibin5978c462018-09-28 10:24:46 +080026pullPolicy: Always
27
28#Istio sidecar injection policy
29istioSidecar: true
30
31# application configuration
32config:
Bin Yang7c309a52020-09-08 11:20:43 +080033 ssl_enabled: false
Huang Haibin5978c462018-09-28 10:24:46 +080034 msbgateway: msb-iag
Bin Yang7c309a52020-09-08 11:20:43 +080035 msbPort: 443
Andreas Geisslerdfa23c82022-05-13 16:54:43 +020036 msbPlainPort: 80
Huang Haibin5978c462018-09-28 10:24:46 +080037 aai:
Andreas Geisslerdfa23c82022-05-13 16:54:43 +020038 aaiPort: 8443
39 aaiPlainPort: 8080
Huang Haibin5978c462018-09-28 10:24:46 +080040 schemaVersion: v13
41 username: AAI
42 password: AAI
43
44# default number of instances
45replicaCount: 1
46
47nodeSelector: {}
48
49affinity: {}
50
51# probe configuration parameters
52liveness:
53 initialDelaySeconds: 30
54 periodSeconds: 10
55 timeoutSeconds: 10
56 successThreshold: 1
57 failureThreshold: 5
58 enabled: true
59
60service:
Bin Yang9ea6b402019-05-08 02:09:38 +000061 type: ClusterIP
Huang Haibin5978c462018-09-28 10:24:46 +080062 name: multicloud-pike
Andreas Geisslerdfa23c82022-05-13 16:54:43 +020063 portName: http
Huang Haibin5978c462018-09-28 10:24:46 +080064 externalPort: 9007
65 internalPort: 9007
66 nodePort: 96
67
68ingress:
69 enabled: false
70
71# Resource Limit flavor -By Default using small
72flavor: small
73# Segregation for Different environment (Small and Large)
74resources:
75 small:
76 limits:
77 cpu: 1
78 memory: 4Gi
79 requests:
80 cpu: 10m
81 memory: 1Gi
82 large:
83 limits:
84 cpu: 2
85 memory: 8Gi
86 requests:
87 cpu: 20m
88 memory: 2Gi
89 unlimited: {}
farida azmy72513552021-10-12 18:55:21 +020090
Bin Yangdf4fc032022-03-22 16:08:22 +080091# memcached image resource
92memcached: memcached:alpine3.15
93
farida azmy72513552021-10-12 18:55:21 +020094#Pods Service Account
95serviceAccount:
96 nameOverride: multicloud-pike
97 roles:
98 - read
Maciej Wereski989c91c2021-11-17 16:45:14 +010099
100#Log configuration
101log:
102 path: /var/log/onap
103logConfigMapNamePrefix: '{{ include "common.fullname" . }}'