Sync up OOM with docker-manifest for 3.0.2
[oom.git] / kubernetes / policy / charts / policy-apex-pdp / values.yaml
1 #  ============LICENSE_START=======================================================
2 #   Copyright (C) 2018 Ericsson. All rights reserved.
3 #   Modifications Copyright © 2019 AT&T
4 #  ================================================================================
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 #################################################################
23 global:
24   nodePortPrefix: 302
25   persistence: {}
26
27 #################################################################
28 # Application configuration defaults.
29 #################################################################
30 # application image
31 repository: nexus3.onap.org:10001
32 image: onap/policy-apex-pdp:2.0.5
33 pullPolicy: Always
34
35 # flag to enable debugging - application support required
36 debugEnabled: false
37
38 # application configuration
39
40 # default number of instances
41 replicaCount: 1
42
43 nodeSelector: {}
44
45 affinity: {}
46
47 # probe configuration parameters
48 liveness:
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
55 readiness:
56   initialDelaySeconds: 20
57   periodSeconds: 10
58
59 service:
60   type: NodePort
61   name: policy-apex-pdp
62   portName: policy-apex-pdp
63   externalPort: 12345
64   nodePort: 37
65
66 ingress:
67   enabled: false
68
69 # Resource Limit flavor -By Default using small
70 flavor: small
71 # Segregation for Different environment (Small and Large)
72 resources:
73   small:
74     limits:
75       cpu: 1
76       memory: 4Gi
77     requests:
78       cpu: 10m
79       memory: 1Gi
80   large:
81     limits:
82       cpu: 2
83       memory: 8Gi
84     requests:
85       cpu: 20m
86       memory: 2Gi
87   unlimited: {}