blob: 7e81ba8ddf1f4f64ef8964473c9ab2bb0ce448bd [file] [log] [blame]
Michael Mokryafae9972019-03-11 14:46:34 -05001# ============LICENSE_START=======================================================
2# Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
3# ================================================================================
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# SPDX-License-Identifier: Apache-2.0
17# ============LICENSE_END=========================================================
18
19#################################################################
20# Global configuration defaults.
21#################################################################
22global:
23 persistence: {}
24
25#################################################################
26# Application configuration defaults.
27#################################################################
28# application image
29repository: nexus3.onap.org:10001
jhh9a867202019-05-23 17:53:10 -050030image: onap/policy-xacml-pdp:2.0.1
Michael Mokryafae9972019-03-11 14:46:34 -050031pullPolicy: Always
32
33# flag to enable debugging - application support required
34debugEnabled: false
35
36# application configuration
37
38# default number of instances
ramverma39a79a42019-05-02 13:07:36 +000039replicaCount: 1
Michael Mokryafae9972019-03-11 14:46:34 -050040
41nodeSelector: {}
42
43affinity: {}
44
45# probe configuration parameters
46liveness:
47 initialDelaySeconds: 20
48 periodSeconds: 10
49 # necessary to disable liveness probe when setting breakpoints
50 # in debugger so K8s doesn't restart unresponsive container
51 enabled: true
52
53readiness:
54 initialDelaySeconds: 20
55 periodSeconds: 10
56
57service:
58 type: ClusterIP
59 name: policy-xacml-pdp
60 portName: policy-xacml-pdp
61 externalPort: 6969
62 internalPort: 6969
63
64ingress:
65 enabled: false
66
67resources: {}