blob: 90af4f4f5ba838885f417dc7d4a2c032500d271e [file] [log] [blame]
mayankg2703ced85142018-03-20 05:42:53 +00001# Copyright © 2017 Amdocs, Bell Canada
Jorge Hernandez71c315f2019-01-11 11:17:57 -06002# Modifications Copyright © 2018-2019 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
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
26#################################################################
27# Application configuration defaults.
28#################################################################
29# application image
30repository: nexus3.onap.org:10001
Yang Xu0d03a7b2019-04-19 12:57:43 -040031image: onap/policy-pe:1.3.7
mayankg2703ced85142018-03-20 05:42:53 +000032pullPolicy: Always
33
34# flag to enable debugging - application support required
35debugEnabled: false
36
37# application configuration
mayankg2703c7985462018-03-29 14:24:23 +000038config:
39 papPort: 9091
mayankg2703ced85142018-03-20 05:42:53 +000040
41# default number of instances
Jorge Hernandezd9f75452018-06-04 11:18:52 -050042replicaCount: 1
mayankg2703ced85142018-03-20 05:42:53 +000043
44nodeSelector: {}
45
46affinity: {}
47
48# probe configuration parameters
49liveness:
50 initialDelaySeconds: 10
51 periodSeconds: 10
52 # necessary to disable liveness probe when setting breakpoints
53 # in debugger so K8s doesn't restart unresponsive container
54 enabled: true
55
56readiness:
57 initialDelaySeconds: 10
58 periodSeconds: 10
59
60service:
Jorge Hernandez4519ccc2018-05-09 08:50:59 -050061 type: ClusterIP
mayankg2703ced85142018-03-20 05:42:53 +000062 name: pdp
BorislavG1ffbd992018-04-24 07:56:27 +000063 portName: pdp
Jorge Hernandez4519ccc2018-05-09 08:50:59 -050064 internalPort: 8081
mayankg2703ced85142018-03-20 05:42:53 +000065 externalPort: 8081
mayankg2703ced85142018-03-20 05:42:53 +000066
67ingress:
68 enabled: false
69
vaibhavjayas4136f5d2018-08-17 07:01:05 +000070# 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
Mandeep Khinda60d36d42018-09-24 15:15:48 +000087 memory: 2Gi
Pamela Dragosh54048d32018-11-09 07:09:41 -050088 unlimited: {}