blob: 88e664d22b98b23d0b7ab8a9b77aeb926eb203fd [file] [log] [blame]
mayankg2703ced85142018-03-20 05:42:53 +00001# Copyright © 2017 Amdocs, Bell Canada
Jorge Hernandezaa5ba982019-03-25 19:13:39 -05002# Modifications Copyright © 2018-2019 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
BorislavG3d6f9372018-04-15 11:55:39 +000022 readinessImage: readiness-check:2.0.0
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#################################################################
28# Application configuration defaults.
29#################################################################
30# application image
31repository: nexus3.onap.org:10001
jhh01096592019-09-04 07:47:25 -050032image: onap/policy-pdpd-cl:1.5.2
mayankg2703ced85142018-03-20 05:42:53 +000033pullPolicy: Always
34
35# flag to enable debugging - application support required
36debugEnabled: false
37
mayankg2703ced85142018-03-20 05:42:53 +000038# default number of instances
Jorge Hernandezd9f75452018-06-04 11:18:52 -050039replicaCount: 1
mayankg2703ced85142018-03-20 05:42:53 +000040
41nodeSelector: {}
42
43affinity: {}
44
45# probe configuration parameters
46liveness:
Jorge Hernandez432aa312018-06-04 18:20:43 -050047 initialDelaySeconds: 180
mayankg2703ced85142018-03-20 05:42:53 +000048 periodSeconds: 10
49 # necessary to disable liveness probe when setting breakpoints
50 # in debugger so K8s doesn't restart unresponsive container
Jorge Hernandez328eadb2018-05-15 07:52:21 -050051 enabled: true
mayankg2703ced85142018-03-20 05:42:53 +000052
53readiness:
Jorge Hernandezd9f75452018-06-04 11:18:52 -050054 initialDelaySeconds: 60
mayankg2703ced85142018-03-20 05:42:53 +000055 periodSeconds: 10
56
57service:
jhh59ce22d2019-05-14 17:59:36 -050058 type: ClusterIP
mayankg2703ced85142018-03-20 05:42:53 +000059 name: drools
BorislavG1ffbd992018-04-24 07:56:27 +000060 portName: drools
jhh59ce22d2019-05-14 17:59:36 -050061 internalPort: 6969
mayankg2703ced85142018-03-20 05:42:53 +000062 externalPort: 6969
63 nodePort: 17
jhh59ce22d2019-05-14 17:59:36 -050064 internalPort2: 9696
mayankg2703ced85142018-03-20 05:42:53 +000065 externalPort2: 9696
66 nodePort2: 21
67
68ingress:
69 enabled: false
70
jhh01096592019-09-04 07:47:25 -050071# Default installation values to be overridden
72
73server:
74 jvmOpts: -server -Xms1024m -Xmx2048m
75
76aaf:
jhh8534fea2019-09-20 14:35:20 -050077 enabled: "false"
jhh01096592019-09-04 07:47:25 -050078
79keystore:
80 password: Pol1cy_0nap
81
82truststore:
83 password: Pol1cy_0nap
84
85telemetry:
86 user: demo@people.osaaf.org
87 password: demo123456!
88
89nexus:
jhh8534fea2019-09-20 14:35:20 -050090 user: admin
jhh01096592019-09-04 07:47:25 -050091 password: admin123
92 port: 8081
93
94db:
95 user: policy_user
96 password: policy_user
97
98pap:
99 user: healthcheck
100 password: zb!XztG34
101
102pdp:
103 user: healthcheck
104 password: zb!XztG34
105
106aai:
107 user: policy@policy.onap.org
108 password: demo123456!
109
110so:
111 user: InfraPortalClient
112 password: password1$
113
114vfc:
115 user:
116 password:
117
118sdnc:
119 user: admin
120 password: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
121
122dmaap:
123 brmsgw:
124 key:
125 password:
126 pap:
127 key:
128 password:
129
vaibhavjayas4136f5d2018-08-17 07:01:05 +0000130# Resource Limit flavor -By Default using small
131flavor: small
132# Segregation for Different environment (Small and Large)
133resources:
134 small:
135 limits:
136 cpu: 1
137 memory: 4Gi
138 requests:
139 cpu: 100m
140 memory: 1Gi
141 large:
142 limits:
143 cpu: 2
144 memory: 8Gi
145 requests:
146 cpu: 200m
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000147 memory: 2Gi
Pamela Dragosh54048d32018-11-09 07:09:41 -0500148 unlimited: {}