blob: b62772d57f550d2726e3b68c5513af40efe987cc [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
118aai:
119 user: policy@policy.onap.org
120 password: demo123456!
121
122so:
123 user: InfraPortalClient
124 password: password1$
125
126vfc:
127 user:
128 password:
129
130sdnc:
131 user: admin
132 password: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
133
134dmaap:
135 brmsgw:
136 key:
137 password:
138 pap:
139 key:
140 password:
141
Rashmi Pujar3cfa4cc2019-10-17 16:05:50 -0400142cds:
143 grpc:
144 user: ccsdkapps
145 password: ccsdkapps
146 svcName: cds-blueprints-processor-grpc
147 svcPort: 9111
148
vaibhavjayas4136f5d2018-08-17 07:01:05 +0000149# Resource Limit flavor -By Default using small
150flavor: small
151# Segregation for Different environment (Small and Large)
152resources:
153 small:
154 limits:
155 cpu: 1
156 memory: 4Gi
157 requests:
158 cpu: 100m
159 memory: 1Gi
160 large:
161 limits:
162 cpu: 2
163 memory: 8Gi
164 requests:
165 cpu: 200m
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000166 memory: 2Gi
Pamela Dragosh54048d32018-11-09 07:09:41 -0500167 unlimited: {}