df13309087d86b77dc84a45db160376122e426db
[oom.git] / kubernetes / oof / charts / oof-has / charts / oof-has-api / 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: # global defaults
16   nodePortPrefix: 302
17
18 service:
19   type: NodePort
20   name: oof-has-api
21   externalPort: 8091
22   internalPort: 8091
23   nodePort: 75
24   portName: oof-has-api
25 ingress:
26   enabled: false
27 replicaCount: 1
28 nodeSelector: {}
29 affinity: {}
30 # Resource Limit flavor -By Default using small
31 flavor: small
32 # Segregation for Different environment (Small and Large)
33 resources:
34   small:
35     limits:
36       memory: 4Gi
37       cpu: 2000m
38     requests:
39       memory: 1Gi
40       cpu: 500m
41   large:
42     limits:
43       memory: 8Gi
44       cpu: 4000m
45     requests:
46       memory: 2Gi
47       cpu: 1000m
48   unlimited: {}
49 # probe configuration parameters
50 liveness:
51   initialDelaySeconds: 10
52   periodSeconds: 10
53   # necessary to disable liveness probe when setting breakpoints
54   # in debugger so K8s doesn't restart unresponsive container
55   enabled: true
56 readiness:
57   initialDelaySeconds: 10
58   periodSeconds: 10