blob: 58ce2d045551ebcc5535db2e6770faa9cb8b27d0 [file] [log] [blame]
mayankg2703ced85142018-03-20 05:42:53 +00001# Copyright © 2017 Amdocs, Bell Canada
jhhd2b9ed82019-12-10 17:15:28 -06002# Modifications Copyright © 2018-2020 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
Sylvain Desbureaux4898dc02019-11-14 13:35:13 +010022 readinessImage: readiness-check:2.0.2
mayankg2703ced85142018-03-20 05:42:53 +000023 loggingRepository: docker.elastic.co
24 loggingImage: beats/filebeat:5.5.0
25 ubuntuImage: ubuntu:16.04
jhh01096592019-09-04 07:47:25 -050026
mayankg2703ced85142018-03-20 05:42:53 +000027#################################################################
Krzysztof Opasiak68b1c922020-03-26 23:59:36 +010028# Secrets metaconfig
29#################################################################
30secrets:
31 - uid: db-secret
32 type: basicAuth
33 externalSecret: '{{ tpl (default "" .Values.db.credsExternalSecret) . }}'
34 login: '{{ .Values.db.user }}'
35 password: '{{ .Values.db.password }}'
36 passwordPolicy: required
37
38#################################################################
mayankg2703ced85142018-03-20 05:42:53 +000039# Application configuration defaults.
40#################################################################
41# application image
42repository: nexus3.onap.org:10001
jhhd2b9ed82019-12-10 17:15:28 -060043image: onap/policy-pdpd-cl:1.6.0
mayankg2703ced85142018-03-20 05:42:53 +000044pullPolicy: Always
45
46# flag to enable debugging - application support required
47debugEnabled: false
48
mayankg2703ced85142018-03-20 05:42:53 +000049# default number of instances
Jorge Hernandezd9f75452018-06-04 11:18:52 -050050replicaCount: 1
mayankg2703ced85142018-03-20 05:42:53 +000051
52nodeSelector: {}
53
54affinity: {}
55
56# probe configuration parameters
57liveness:
Jorge Hernandez432aa312018-06-04 18:20:43 -050058 initialDelaySeconds: 180
mayankg2703ced85142018-03-20 05:42:53 +000059 periodSeconds: 10
60 # necessary to disable liveness probe when setting breakpoints
61 # in debugger so K8s doesn't restart unresponsive container
Jorge Hernandez328eadb2018-05-15 07:52:21 -050062 enabled: true
mayankg2703ced85142018-03-20 05:42:53 +000063
64readiness:
Jorge Hernandezd9f75452018-06-04 11:18:52 -050065 initialDelaySeconds: 60
mayankg2703ced85142018-03-20 05:42:53 +000066 periodSeconds: 10
67
68service:
jhh59ce22d2019-05-14 17:59:36 -050069 type: ClusterIP
mayankg2703ced85142018-03-20 05:42:53 +000070 name: drools
BorislavG1ffbd992018-04-24 07:56:27 +000071 portName: drools
jhh59ce22d2019-05-14 17:59:36 -050072 internalPort: 6969
mayankg2703ced85142018-03-20 05:42:53 +000073 externalPort: 6969
74 nodePort: 17
jhh59ce22d2019-05-14 17:59:36 -050075 internalPort2: 9696
mayankg2703ced85142018-03-20 05:42:53 +000076 externalPort2: 9696
77 nodePort2: 21
78
79ingress:
80 enabled: false
81
jhh01096592019-09-04 07:47:25 -050082# Default installation values to be overridden
83
84server:
85 jvmOpts: -server -Xms1024m -Xmx2048m
86
87aaf:
jhh8534fea2019-09-20 14:35:20 -050088 enabled: "false"
jhh01096592019-09-04 07:47:25 -050089
90keystore:
91 password: Pol1cy_0nap
92
93truststore:
94 password: Pol1cy_0nap
95
96telemetry:
97 user: demo@people.osaaf.org
98 password: demo123456!
99
100nexus:
jhh8534fea2019-09-20 14:35:20 -0500101 user: admin
jhh01096592019-09-04 07:47:25 -0500102 password: admin123
103 port: 8081
jhhd2b9ed82019-12-10 17:15:28 -0600104 offline: true
jhh01096592019-09-04 07:47:25 -0500105
106db:
107 user: policy_user
108 password: policy_user
109
110pap:
111 user: healthcheck
112 password: zb!XztG34
113
114pdp:
115 user: healthcheck
116 password: zb!XztG34
117
jhhdf5484e2020-04-06 15:08:35 -0500118papl:
119 user: testpap
120 password: alpha123
121
122pdpl:
123 user: testpdp
124 password: alpha123
125
jhh01096592019-09-04 07:47:25 -0500126aai:
127 user: policy@policy.onap.org
128 password: demo123456!
129
130so:
131 user: InfraPortalClient
132 password: password1$
133
134vfc:
135 user:
136 password:
137
138sdnc:
139 user: admin
140 password: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
141
142dmaap:
143 brmsgw:
144 key:
145 password:
146 pap:
147 key:
148 password:
149
Rashmi Pujar3cfa4cc2019-10-17 16:05:50 -0400150cds:
151 grpc:
152 user: ccsdkapps
153 password: ccsdkapps
154 svcName: cds-blueprints-processor-grpc
155 svcPort: 9111
156
vaibhavjayas4136f5d2018-08-17 07:01:05 +0000157# Resource Limit flavor -By Default using small
158flavor: small
159# Segregation for Different environment (Small and Large)
160resources:
161 small:
162 limits:
163 cpu: 1
164 memory: 4Gi
165 requests:
166 cpu: 100m
167 memory: 1Gi
168 large:
169 limits:
170 cpu: 2
171 memory: 8Gi
172 requests:
173 cpu: 200m
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000174 memory: 2Gi
Pamela Dragosh54048d32018-11-09 07:09:41 -0500175 unlimited: {}