blob: b149c17c482e156766cbc62eb1fb150e533ae13b [file] [log] [blame]
mmis95971132018-07-17 00:13:13 +01001# ============LICENSE_START=======================================================
2# Copyright (C) 2018 Ericsson. All rights reserved.
jhhd2b9ed82019-12-10 17:15:28 -06003# Modifications Copyright (C) 2019-2020 AT&T Intellectual Property.
mmis95971132018-07-17 00:13:13 +01004# ================================================================================
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16#
17# SPDX-License-Identifier: Apache-2.0
18# ============LICENSE_END=========================================================
19
20#################################################################
21# Global configuration defaults.
22#################################################################
23global:
24 nodePortPrefix: 302
25 persistence: {}
26
27#################################################################
28# Application configuration defaults.
29#################################################################
30# application image
31repository: nexus3.onap.org:10001
jhhd2b9ed82019-12-10 17:15:28 -060032image: onap/policy-apex-pdp:2.3.0
mmis95971132018-07-17 00:13:13 +010033pullPolicy: Always
34
35# flag to enable debugging - application support required
36debugEnabled: false
37
38# application configuration
39
40# default number of instances
41replicaCount: 1
42
43nodeSelector: {}
44
45affinity: {}
46
47# probe configuration parameters
48liveness:
49 initialDelaySeconds: 20
50 periodSeconds: 10
51 # necessary to disable liveness probe when setting breakpoints
52 # in debugger so K8s doesn't restart unresponsive container
53 enabled: true
54
55readiness:
56 initialDelaySeconds: 20
57 periodSeconds: 10
58
59service:
jhh59ce22d2019-05-14 17:59:36 -050060 type: ClusterIP
mmis95971132018-07-17 00:13:13 +010061 name: policy-apex-pdp
62 portName: policy-apex-pdp
a.sreekumar7f4efaf2019-04-16 16:24:01 +000063 externalPort: 6969
jhh59ce22d2019-05-14 17:59:36 -050064 internalPort: 6969
mmis95971132018-07-17 00:13:13 +010065 nodePort: 37
66
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: {}