Merge "[DCAEMOD] Uses new tpls for repos / images"
[oom.git] / kubernetes / oof / components / oof-has / components / oof-has-data / values.yaml
1 # Copyright © 2017 Amdocs, AT&T, Bell Canada, VMware
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 global:
16   image:
17     optf_has: onap/optf-has:2.1.2
18
19 #################################################################
20 # secrets metaconfig
21 #################################################################
22 secrets:
23   - uid: oof-onap-certs
24     externalSecret: '{{ tpl (default "" .Values.certSecret) . }}'
25     type: generic
26     filePaths: '{{ .Values.secretsFilePaths }}'
27
28 ingress:
29   enabled: false
30 replicaCount: 1
31 nodeSelector: {}
32 affinity: {}
33 # Resource Limit flavor -By Default using small
34 flavor: small
35 # Segregation for Different environment (Small and Large)
36 resources:
37   small:
38     limits:
39       memory: 4Gi
40       cpu: 2000m
41     requests:
42       memory: 1Gi
43       cpu: 500m
44   large:
45     limits:
46       memory: 8Gi
47       cpu: 4000m
48     requests:
49       memory: 2Gi
50       cpu: 1000m
51   unlimited: {}
52 # probe configuration parameters
53 liveness:
54   initialDelaySeconds: 10
55   periodSeconds: 10
56   # necessary to disable liveness probe when setting breakpoints
57   # in debugger so K8s doesn't restart unresponsive container
58   enabled: true
59 readiness:
60   initialDelaySeconds: 10
61   periodSeconds: 10