blob: dc7266e9a1862c0f9b0f0e370327f277e58b4b32 [file] [log] [blame]
Michael Mokryafae9972019-03-11 14:46:34 -05001# ============LICENSE_START=======================================================
jhhd2b9ed82019-12-10 17:15:28 -06002# Copyright (C) 2019-2020 AT&T Intellectual Property. All rights reserved.
Michael Mokryafae9972019-03-11 14:46:34 -05003# ================================================================================
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#################################################################
Krzysztof Opasiak7e31efc2020-04-01 00:21:45 +020026# Secrets metaconfig
27#################################################################
28secrets:
29 - uid: db-secret
30 type: basicAuth
31 externalSecret: '{{ tpl (default "" .Values.db.credsExternalSecret) . }}'
32 login: '{{ .Values.db.user }}'
33 password: '{{ .Values.db.password }}'
34 passwordPolicy: required
35
36#################################################################
Michael Mokryafae9972019-03-11 14:46:34 -050037# Application configuration defaults.
38#################################################################
39# application image
40repository: nexus3.onap.org:10001
jhhd2b9ed82019-12-10 17:15:28 -060041image: onap/policy-xacml-pdp:2.2.0
Michael Mokryafae9972019-03-11 14:46:34 -050042pullPolicy: Always
43
44# flag to enable debugging - application support required
45debugEnabled: false
46
47# application configuration
48
Krzysztof Opasiak7e31efc2020-04-01 00:21:45 +020049db:
50 user: policy_user
51 password: policy_user
52
Michael Mokryafae9972019-03-11 14:46:34 -050053# default number of instances
ramverma39a79a42019-05-02 13:07:36 +000054replicaCount: 1
Michael Mokryafae9972019-03-11 14:46:34 -050055
56nodeSelector: {}
57
58affinity: {}
59
60# probe configuration parameters
61liveness:
62 initialDelaySeconds: 20
63 periodSeconds: 10
64 # necessary to disable liveness probe when setting breakpoints
65 # in debugger so K8s doesn't restart unresponsive container
66 enabled: true
67
68readiness:
69 initialDelaySeconds: 20
70 periodSeconds: 10
71
72service:
73 type: ClusterIP
74 name: policy-xacml-pdp
75 portName: policy-xacml-pdp
76 externalPort: 6969
77 internalPort: 6969
78
79ingress:
80 enabled: false
81
82resources: {}