blob: 08afdeeac07a3f86cec6a19998edd96412c4b319 [file] [log] [blame]
mayankg2703ced85142018-03-20 05:42:53 +00001# Copyright © 2017 Amdocs, Bell Canada
jhhd2b9ed82019-12-10 17:15:28 -06002# Modifications Copyright © 2018-2020 AT&T
mayankg2703ced85142018-03-20 05:42:53 +00003#
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
mayankg2703ced85142018-03-20 05:42:53 +000021 readinessRepository: oomk8s
Sylvain Desbureaux4898dc02019-11-14 13:35:13 +010022 readinessImage: readiness-check:2.0.2
mayankg2703ced85142018-03-20 05:42:53 +000023
24#################################################################
Krzysztof Opasiak44088f92020-04-01 00:28:14 +020025# Secrets metaconfig
26#################################################################
27secrets:
28 - uid: db-secret
29 type: basicAuth
30 externalSecret: '{{ tpl (default "" .Values.db.credsExternalSecret) . }}'
31 login: '{{ .Values.db.user }}'
32 password: '{{ .Values.db.password }}'
33 passwordPolicy: required
34
35#################################################################
mayankg2703ced85142018-03-20 05:42:53 +000036# Application configuration defaults.
37#################################################################
38# application image
39repository: nexus3.onap.org:10001
jhhd2b9ed82019-12-10 17:15:28 -060040image: onap/policy-pe:1.6.1
mayankg2703ced85142018-03-20 05:42:53 +000041pullPolicy: Always
42
43# flag to enable debugging - application support required
44debugEnabled: false
45
46# application configuration
mayankg2703c7985462018-03-29 14:24:23 +000047config:
48 papPort: 9091
49 pdpPort: 8081
50 nexusPort: 8081
mayankg2703ced85142018-03-20 05:42:53 +000051
Krzysztof Opasiak44088f92020-04-01 00:28:14 +020052db:
53 user: policy_user
54 password: policy_user
55
mayankg2703ced85142018-03-20 05:42:53 +000056# default number of instances
57replicaCount: 1
58
59nodeSelector: {}
60
61affinity: {}
62
63# probe configuration parameters
64liveness:
65 initialDelaySeconds: 10
66 periodSeconds: 10
67 # necessary to disable liveness probe when setting breakpoints
68 # in debugger so K8s doesn't restart unresponsive container
69 enabled: false
70
71readiness:
72 initialDelaySeconds: 30
73 periodSeconds: 10
74
75service:
jhh59ce22d2019-05-14 17:59:36 -050076 type: ClusterIP
mayankg2703ced85142018-03-20 05:42:53 +000077 name: brmsgw
BorislavG1ffbd992018-04-24 07:56:27 +000078 portName: brmsgw
mayankg2703ced85142018-03-20 05:42:53 +000079 externalPort: 9989
jhh59ce22d2019-05-14 17:59:36 -050080 internalPort: 9989
mayankg2703ced85142018-03-20 05:42:53 +000081 nodePort: 16
82
83
84ingress:
85 enabled: false
86
vaibhavjayas4136f5d2018-08-17 07:01:05 +000087# Resource Limit flavor -By Default using small
88flavor: small
89# Segregation for Different environment (Small and Large)
90resources:
91 small:
92 limits:
93 cpu: 1
94 memory: 2Gi
95 requests:
96 cpu: 10m
97 memory: 0.5Gi
98 large:
99 limits:
100 cpu: 2
101 memory: 4Gi
102 requests:
103 cpu: 20m
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000104 memory: 1Gi
Pamela Dragosh54048d32018-11-09 07:09:41 -0500105 unlimited: {}