policy changes pre-1st policy release in frankfurt
[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 # Application configuration defaults.
29 #################################################################
30 # application image
31 repository: nexus3.onap.org:10001
32 image: onap/policy-pdpd-cl:1.6.0
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: "false"
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   user: admin
91   password: admin123
92   port: 8081
93   offline: true
94
95 db:
96   user: policy_user
97   password: policy_user
98
99 pap:
100   user: healthcheck
101   password: zb!XztG34
102
103 pdp:
104   user: healthcheck
105   password: zb!XztG34
106
107 aai:
108   user: policy@policy.onap.org
109   password: demo123456!
110
111 so:
112   user: InfraPortalClient
113   password: password1$
114
115 vfc:
116   user:
117   password:
118
119 sdnc:
120   user: admin
121   password: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
122
123 dmaap:
124   brmsgw:
125     key:
126     password:
127   pap:
128     key:
129     password:
130
131 cds:
132   grpc:
133     user: ccsdkapps
134     password: ccsdkapps
135     svcName: cds-blueprints-processor-grpc
136     svcPort: 9111
137
138 # Resource Limit flavor -By Default using small
139 flavor: small
140 # Segregation for Different environment (Small and Large)
141 resources:
142   small:
143     limits:
144       cpu: 1
145       memory: 4Gi
146     requests:
147       cpu: 100m
148       memory: 1Gi
149   large:
150     limits:
151       cpu: 2
152       memory: 8Gi
153     requests:
154       cpu: 200m
155       memory: 2Gi
156   unlimited: {}