[POLICY] Update released versions
[oom.git] / kubernetes / policy / components / policy-drools-pdp / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications Copyright © 2018-2021 AT&T Intellectual Property
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
22 #################################################################
23 # Secrets metaconfig
24 #################################################################
25 secrets:
26   - uid: db-secret
27     type: basicAuth
28     externalSecret: '{{ tpl (default "" .Values.db.credsExternalSecret) . }}'
29     login: '{{ .Values.db.user }}'
30     password: '{{ .Values.db.password }}'
31     passwordPolicy: required
32
33 #################################################################
34 # Application configuration defaults.
35 #################################################################
36 # application image
37 image: onap/policy-pdpd-cl:1.8.0
38 pullPolicy: Always
39
40 # flag to enable debugging - application support required
41 debugEnabled: false
42
43 # default number of instances
44 replicaCount: 1
45
46 nodeSelector: {}
47
48 affinity: {}
49
50 # probe configuration parameters
51 liveness:
52   initialDelaySeconds: 180
53   periodSeconds: 10
54   # necessary to disable liveness probe when setting breakpoints
55   # in debugger so K8s doesn't restart unresponsive container
56   enabled: true
57
58 readiness:
59   initialDelaySeconds: 60
60   periodSeconds: 10
61
62 service:
63   type: ClusterIP
64   name: policy-drools-pdp
65   portName: policy-drools-pdp
66   internalPort: 6969
67   externalPort: 6969
68   nodePort: 17
69   internalPort2: 9696
70   externalPort2: 9696
71   nodePort2: 21
72
73 ingress:
74   enabled: false
75
76 # Default installation values to be overridden
77
78 certInitializer:
79   nameOverride: policy-drools-pdp-cert-initializer
80   aafDeployFqi: deployer@people.osaaf.org
81   aafDeployPass: demo123456!
82   fqdn: policy
83   fqi: policy@policy.onap.org
84   public_fqdn: policy.onap.org
85   cadi_latitude: "0.0"
86   cadi_longitude: "0.0"
87   credsPath: /opt/app/osaaf/local
88   app_ns: org.osaaf.aaf
89   uid: 1000
90   gid: 1000
91   aaf_add_config: >
92     /opt/app/aaf_config/bin/agent.sh;
93     export $(/opt/app/aaf_config/bin/agent.sh local showpass
94     {{ .Values.fqi }} {{ .Values.fqdn }} | grep "^cadi_keystore_password_p12");
95     echo "export KEYSTORE='{{ .Values.credsPath }}/org.onap.policy.p12'" >> {{ .Values.credsPath }}/.ci;
96     echo "export KEYSTORE_PASSWD='${cadi_keystore_password_p12}'" >> {{ .Values.credsPath }}/.ci;
97     chown -R {{ .Values.uid }}:{{ .Values.gid }} $(dirname {{ .Values.credsPath }});
98
99 server:
100   jvmOpts: -server -XshowSettings:vm
101
102 aaf:
103   enabled: "false"
104
105 keystore:
106   password: Pol1cy_0nap
107
108 truststore:
109   password: Pol1cy_0nap
110
111 telemetry:
112   user: demo@people.osaaf.org
113   password: demo123456!
114
115 nexus:
116   name: policy-nexus
117   port: 8081
118   user: admin
119   password: admin123
120   offline: true
121
122 db:
123   name: policy-mariadb
124   user: policy_user
125   password: policy_user
126
127 pap:
128   user: healthcheck
129   password: zb!XztG34
130
131 pdp:
132   user: healthcheck
133   password: zb!XztG34
134
135 papl:
136   user: testpap
137   password: alpha123
138
139 pdpl:
140   user: testpdp
141   password: alpha123
142
143 aai:
144   user: policy@policy.onap.org
145   password: demo123456!
146
147 so:
148   user: InfraPortalClient
149   password: password1$
150
151 vfc:
152   user:
153   password:
154
155 sdnc:
156   user: admin
157   password: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
158
159 dmaap:
160   brmsgw:
161     key:
162     password:
163   pap:
164     key:
165     password:
166
167 cds:
168   grpc:
169     user: ccsdkapps
170     password: ccsdkapps
171     svcName: cds-blueprints-processor-grpc
172     svcPort: 9111
173
174 # Resource Limit flavor -By Default using small
175 # Segregation for Different environment (small, large, or unlimited)
176 flavor: small
177 resources:
178   small:
179     limits:
180       cpu: 1
181       memory: 4Gi
182     requests:
183       cpu: 100m
184       memory: 1Gi
185   large:
186     limits:
187       cpu: 2
188       memory: 8Gi
189     requests:
190       cpu: 200m
191       memory: 2Gi
192   unlimited: {}