blob: 45c73099dd322114edbd2447acee3332d51c897c [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 Yangda0a1712021-09-14 10:04:16 +080025image: onap/multicloud/openstack-pike:1.5.6
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
34 msbprotocol: https
Huang Haibin5978c462018-09-28 10:24:46 +080035 msbgateway: msb-iag
Bin Yang7c309a52020-09-08 11:20:43 +080036 msbPort: 443
Huang Haibin5978c462018-09-28 10:24:46 +080037 aai:
38 port: 8443
39 schemaVersion: v13
40 username: AAI
41 password: AAI
42
43# default number of instances
44replicaCount: 1
45
46nodeSelector: {}
47
48affinity: {}
49
50# probe configuration parameters
51liveness:
52 initialDelaySeconds: 30
53 periodSeconds: 10
54 timeoutSeconds: 10
55 successThreshold: 1
56 failureThreshold: 5
57 enabled: true
58
59service:
Bin Yang9ea6b402019-05-08 02:09:38 +000060 type: ClusterIP
Huang Haibin5978c462018-09-28 10:24:46 +080061 name: multicloud-pike
62 portName: multicloud-pike
63 externalPort: 9007
64 internalPort: 9007
65 nodePort: 96
66
67ingress:
68 enabled: false
69
70# Resource Limit flavor -By Default using small
71flavor: small
72# Segregation for Different environment (Small and Large)
73resources:
74 small:
75 limits:
76 cpu: 1
77 memory: 4Gi
78 requests:
79 cpu: 10m
80 memory: 1Gi
81 large:
82 limits:
83 cpu: 2
84 memory: 8Gi
85 requests:
86 cpu: 20m
87 memory: 2Gi
88 unlimited: {}
farida azmy72513552021-10-12 18:55:21 +020089
90#Pods Service Account
91serviceAccount:
92 nameOverride: multicloud-pike
93 roles:
94 - read
Maciej Wereski989c91c2021-11-17 16:45:14 +010095
96#Log configuration
97log:
98 path: /var/log/onap
99logConfigMapNamePrefix: '{{ include "common.fullname" . }}'