[POLICY] Use common secret template in drools
[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.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.5.3
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
105 db:
106   user: policy_user
107   password: policy_user
108
109 pap:
110   user: healthcheck
111   password: zb!XztG34
112
113 pdp:
114   user: healthcheck
115   password: zb!XztG34
116
117 aai:
118   user: policy@policy.onap.org
119   password: demo123456!
120
121 so:
122   user: InfraPortalClient
123   password: password1$
124
125 vfc:
126   user:
127   password:
128
129 sdnc:
130   user: admin
131   password: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
132
133 dmaap:
134   brmsgw:
135     key:
136     password:
137   pap:
138     key:
139     password:
140
141 cds:
142   grpc:
143     user: ccsdkapps
144     password: ccsdkapps
145     svcName: cds-blueprints-processor-grpc
146     svcPort: 9111
147
148 # Resource Limit flavor -By Default using small
149 flavor: small
150 # Segregation for Different environment (Small and Large)
151 resources:
152   small:
153     limits:
154       cpu: 1
155       memory: 4Gi
156     requests:
157       cpu: 100m
158       memory: 1Gi
159   large:
160     limits:
161       cpu: 2
162       memory: 8Gi
163     requests:
164       cpu: 200m
165       memory: 2Gi
166   unlimited: {}