58ce2d045551ebcc5535db2e6770faa9cb8b27d0
[oom.git] / kubernetes / policy / charts / drools / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications Copyright © 2018-2020 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.2
23   loggingRepository: docker.elastic.co
24   loggingImage: beats/filebeat:5.5.0
25   ubuntuImage: ubuntu:16.04
26
27 #################################################################
28 # Secrets metaconfig
29 #################################################################
30 secrets:
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 #################################################################
39 # Application configuration defaults.
40 #################################################################
41 # application image
42 repository: nexus3.onap.org:10001
43 image: onap/policy-pdpd-cl:1.6.0
44 pullPolicy: Always
45
46 # flag to enable debugging - application support required
47 debugEnabled: false
48
49 # default number of instances
50 replicaCount: 1
51
52 nodeSelector: {}
53
54 affinity: {}
55
56 # probe configuration parameters
57 liveness:
58   initialDelaySeconds: 180
59   periodSeconds: 10
60   # necessary to disable liveness probe when setting breakpoints
61   # in debugger so K8s doesn't restart unresponsive container
62   enabled: true
63
64 readiness:
65   initialDelaySeconds: 60
66   periodSeconds: 10
67
68 service:
69   type: ClusterIP
70   name: drools
71   portName: drools
72   internalPort: 6969
73   externalPort: 6969
74   nodePort: 17
75   internalPort2: 9696
76   externalPort2: 9696
77   nodePort2: 21
78
79 ingress:
80   enabled: false
81
82 # Default installation values to be overridden
83
84 server:
85   jvmOpts: -server -Xms1024m -Xmx2048m
86
87 aaf:
88   enabled: "false"
89
90 keystore:
91   password: Pol1cy_0nap
92
93 truststore:
94   password: Pol1cy_0nap
95
96 telemetry:
97   user: demo@people.osaaf.org
98   password: demo123456!
99
100 nexus:
101   user: admin
102   password: admin123
103   port: 8081
104   offline: true
105
106 db:
107   user: policy_user
108   password: policy_user
109
110 pap:
111   user: healthcheck
112   password: zb!XztG34
113
114 pdp:
115   user: healthcheck
116   password: zb!XztG34
117
118 papl:
119   user: testpap
120   password: alpha123
121
122 pdpl:
123   user: testpdp
124   password: alpha123
125
126 aai:
127   user: policy@policy.onap.org
128   password: demo123456!
129
130 so:
131   user: InfraPortalClient
132   password: password1$
133
134 vfc:
135   user:
136   password:
137
138 sdnc:
139   user: admin
140   password: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
141
142 dmaap:
143   brmsgw:
144     key:
145     password:
146   pap:
147     key:
148     password:
149
150 cds:
151   grpc:
152     user: ccsdkapps
153     password: ccsdkapps
154     svcName: cds-blueprints-processor-grpc
155     svcPort: 9111
156
157 # Resource Limit flavor -By Default using small
158 flavor: small
159 # Segregation for Different environment (Small and Large)
160 resources:
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
174       memory: 2Gi
175   unlimited: {}