blob: d1527ab6b8f83c56c255983717b64ea4dc3446fd [file] [log] [blame]
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00001# Copyright © 2017 Amdocs, Bell Canada
jhh59ce22d2019-05-14 17:59:36 -05002# Modifications Copyright © 2018-2019 AT&T
vaibhav_16dece04b2fe2018-03-22 09:07:12 +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
mayankg2703ced85142018-03-20 05:42:53 +000016#################################################################
17# Global configuration defaults.
18#################################################################
19global:
20 nodePortPrefix: 302
mayankg2703ced85142018-03-20 05:42:53 +000021 readinessRepository: oomk8s
BorislavG3d6f9372018-04-15 11:55:39 +000022 readinessImage: readiness-check:2.0.0
mayankg2703ced85142018-03-20 05:42:53 +000023 loggingRepository: docker.elastic.co
24 loggingImage: beats/filebeat:5.5.0
25 ubuntuImage: ubuntu:16.04
26 mariadb:
27 nameOverride: policydb
28 pdp:
29 nameOverride: pdp
30 pap:
31 nameOverride: pap
32 drools:
33 nameOverride: drools
34 brmwgw:
35 nameOverride: brmsgw
36 nexus:
37 nameOverride: nexus
38
39#################################################################
40# Application configuration defaults.
41#################################################################
42# application image
43repository: nexus3.onap.org:10001
jhh9a867202019-05-23 17:53:10 -050044image: onap/policy-pe:1.4.1
kerenj3b697f62017-08-23 11:21:21 +000045pullPolicy: Always
Alexis de Talhouëtdf4db0b2017-12-11 08:36:25 -050046
mayankg2703ced85142018-03-20 05:42:53 +000047subChartsOnly:
48 enabled: true
BorislavG5f3b6192018-03-25 18:12:38 +030049
mayankg2703ced85142018-03-20 05:42:53 +000050nameOverride: pap
51
52pdp:
53 nameOverride: pdp
54mariadb:
55 nameOverride: policydb
56drools:
57 nameOverride: drools
58brmwgw:
59 nameOverride: brmsgw
60nexus:
61 nameOverride: nexus
62
63# flag to enable debugging - application support required
64debugEnabled: false
65
66# application configuration
BorislavG5f3b6192018-03-25 18:12:38 +030067config:
Jorge Hernandez823691f2018-04-30 19:53:29 -050068 preloadPolicies: false
mayankg2703c7985462018-03-29 14:24:23 +000069 pdpPort: 8081
mayankg2703ced85142018-03-20 05:42:53 +000070
71# default number of instances
72replicaCount: 1
73
74nodeSelector: {}
75
76affinity: {}
77
78# probe configuration parameters
79liveness:
80 initialDelaySeconds: 10
81 periodSeconds: 10
82 # necessary to disable liveness probe when setting breakpoints
83 # in debugger so K8s doesn't restart unresponsive container
84 enabled: true
85
86readiness:
87 initialDelaySeconds: 10
88 periodSeconds: 10
89
90service:
91 type: NodePort
92 name: pap
BorislavG1ffbd992018-04-24 07:56:27 +000093 portName: pap
jhh59ce22d2019-05-14 17:59:36 -050094 internalPort: 8443
mayankg2703ced85142018-03-20 05:42:53 +000095 externalPort: 8443
96 nodePort: 19
jhh59ce22d2019-05-14 17:59:36 -050097 internalPort2: 9091
mayankg2703ced85142018-03-20 05:42:53 +000098 externalPort2: 9091
99 nodePort2: 18
100
101ingress:
102 enabled: false
103
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000104# Resource Limit flavor -By Default using small
vaibhavjayas4136f5d2018-08-17 07:01:05 +0000105flavor: small
106# Segregation for Different environment (Small and Large)
107resources:
108 small:
109 limits:
110 cpu: 1
111 memory: 4Gi
112 requests:
113 cpu: 10m
114 memory: 1Gi
115 large:
116 limits:
117 cpu: 2
118 memory: 8Gi
119 requests:
120 cpu: 20m
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000121 memory: 2Gi
Jorge Hernandezd128b202019-02-14 13:52:59 -0600122 unlimited: {}