Merge "Add FCAPS to oom"
[oom.git] / kubernetes / aaf / charts / aaf-hello / 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.2
22 flavor: small
23 #################################################################
24 # Application configuration defaults.
25 #################################################################
26 # application image
27
28
29 nodeSelector: {}
30
31 affinity: {}
32
33 # probe configuration parameters
34 liveness:
35   initialDelaySeconds: 120
36   periodSeconds: 10
37   # necessary to disable liveness probe when setting breakpoints
38   # in debugger so K8s doesn't restart unresponsive container
39   enabled: true
40
41 readiness:
42   initialDelaySeconds: 5
43   periodSeconds: 10
44
45 service:
46   name: aaf-hello
47   type: ClusterIP
48   portName: aaf-hello
49   #targetPort
50   internalPort: 8130
51   #port
52   externalPort: 8130
53
54 ingress:
55   enabled: false
56
57 # Configure resource requests and limits
58 resources: {}
59 # Allow END users to do this, if they want.  Detrimental to Test services
60 #resources:
61 #  small:
62 #    limits:
63 #      cpu: 200m
64 #      memory: 500Mi
65 #    requests:
66 #      cpu: 10m
67 #      memory: 200Mi
68 #  large:
69 #    limits:
70 #      cpu: 400m
71 #      memory: 1Gi
72 #    requests:
73 #      cpu: 20m
74 #      memory: 500Mi
75 #  unlimited: {}