Merge "[SDC] Change default access mode for cert PVC"
[oom.git] / kubernetes / aaf / charts / aaf-locate / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
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 #################################################################
16 # Global configuration defaults.
17 #################################################################
18 global:
19   nodePortPrefix: 302
20   readinessRepository: oomk8s
21   readinessImage: readiness-check:2.0.0
22 flavor: small
23 #################################################################
24 # Application configuration defaults.
25 #################################################################
26 # application image
27
28 nodeSelector: {}
29
30 affinity: {}
31
32 # probe configuration parameters
33 liveness:
34   initialDelaySeconds: 120
35   periodSeconds: 10
36   # necessary to disable liveness probe when setting breakpoints
37   # in debugger so K8s doesn't restart unresponsive container
38   enabled: true
39
40 readiness:
41   initialDelaySeconds: 5
42   periodSeconds: 10
43
44 service:
45   name: aaf-locate
46   type: ClusterIP
47   portName: aaf-locate
48   #targetPort
49   internalPort: 8095
50   #port
51   externalPort: 31111
52
53 ingress:
54   enabled: false
55   service:
56     - baseaddr: "aaflocate"
57       name: "aaf-locate"
58       port: 8095
59   config:
60     ssl: "none"
61
62 # Configure resource requests and limits
63 resources:
64  small:
65    limits:
66      cpu: 100m
67      memory: 320Mi
68    requests:
69      cpu: 1m
70      memory: 210Mi
71  large:
72    limits:
73      cpu: 400m
74      memory: 1Gi
75    requests:
76      cpu: 40m
77      memory: 500Mi
78  unlimited: {}