Merge "Add dmaap-listener prop files"
[oom.git] / kubernetes / policy / charts / brmsgw / 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   envsubstImage: dibi/envsubst
24
25 #################################################################
26 # Secrets metaconfig
27 #################################################################
28 secrets:
29   - uid: db-secret
30     type: basicAuth
31     externalSecret: '{{ tpl (default "" .Values.db.credsExternalSecret) . }}'
32     login: '{{ .Values.db.user }}'
33     password: '{{ .Values.db.password }}'
34     passwordPolicy: required
35
36 #################################################################
37 # Application configuration defaults.
38 #################################################################
39 # application image
40 repository: nexus3.onap.org:10001
41 image: onap/policy-pe:1.6.1
42 pullPolicy: Always
43
44 # flag to enable debugging - application support required
45 debugEnabled: false
46
47 # application configuration
48 config:
49   papPort: 9091
50   pdpPort: 8081
51   nexusPort: 8081
52
53 db:
54   user: policy_user
55   password: policy_user
56
57 # default number of instances
58 replicaCount: 1
59
60 nodeSelector: {}
61
62 affinity: {}
63
64 # probe configuration parameters
65 liveness:
66   initialDelaySeconds: 10
67   periodSeconds: 10
68   # necessary to disable liveness probe when setting breakpoints
69   # in debugger so K8s doesn't restart unresponsive container
70   enabled: false
71
72 readiness:
73   initialDelaySeconds: 30
74   periodSeconds: 10
75
76 service:
77   type: ClusterIP
78   name: brmsgw
79   portName: brmsgw
80   externalPort: 9989
81   internalPort: 9989
82   nodePort: 16
83
84
85 ingress:
86   enabled: false
87
88 # Resource Limit flavor -By Default using small
89 flavor: small
90 # Segregation for Different environment (Small and Large)
91 resources:
92   small:
93     limits:
94       cpu: 1
95       memory: 2Gi
96     requests:
97       cpu: 10m
98       memory: 0.5Gi
99   large:
100     limits:
101       cpu: 2
102       memory: 4Gi
103     requests:
104       cpu: 20m
105       memory: 1Gi
106   unlimited: {}