refactor drools chart to allow customizations
[oom.git] / kubernetes / policy / charts / drools / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications Copyright © 2018-2019 AT&T
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 #################################################################
17 # Global configuration defaults.
18 #################################################################
19 global:
20   nodePortPrefix: 302
21   readinessRepository: oomk8s
22   readinessImage: readiness-check:2.0.0
23   loggingRepository: docker.elastic.co
24   loggingImage: beats/filebeat:5.5.0
25   ubuntuImage: ubuntu:16.04
26
27 #################################################################
28 # Application configuration defaults.
29 #################################################################
30 # application image
31 repository: nexus3.onap.org:10001
32 image: onap/policy-pdpd-cl:1.5.2
33 pullPolicy: Always
34
35 # flag to enable debugging - application support required
36 debugEnabled: false
37
38 # default number of instances
39 replicaCount: 1
40
41 nodeSelector: {}
42
43 affinity: {}
44
45 # probe configuration parameters
46 liveness:
47   initialDelaySeconds: 180
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
53 readiness:
54   initialDelaySeconds: 60
55   periodSeconds: 10
56
57 service:
58   type: ClusterIP
59   name: drools
60   portName: drools
61   internalPort: 6969
62   externalPort: 6969
63   nodePort: 17
64   internalPort2: 9696
65   externalPort2: 9696
66   nodePort2: 21
67
68 ingress:
69   enabled: false
70
71 # Default installation values to be overridden
72
73 server:
74   jvmOpts: -server -Xms1024m -Xmx2048m
75
76 aaf:
77   enabled: "true"
78
79 keystore:
80   password: Pol1cy_0nap
81
82 truststore:
83   password: Pol1cy_0nap
84
85 telemetry:
86   user: demo@people.osaaf.org
87   password: demo123456!
88
89 nexus:
90   nexus: admin
91   password: admin123
92   port: 8081
93
94 db:
95   user: policy_user
96   password: policy_user
97
98 pap:
99   user: healthcheck
100   password: zb!XztG34
101
102 pdp:
103   user: healthcheck
104   password: zb!XztG34
105
106 aai:
107   user: policy@policy.onap.org
108   password: demo123456!
109
110 so:
111   user: InfraPortalClient
112   password: password1$
113
114 vfc:
115   user:
116   password:
117
118 sdnc:
119   user: admin
120   password: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
121
122 dmaap:
123   brmsgw:
124     key:
125     password:
126   pap:
127     key:
128     password:
129
130 # Resource Limit flavor -By Default using small
131 flavor: small
132 # Segregation for Different environment (Small and Large)
133 resources:
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
147       memory: 2Gi
148   unlimited: {}