vvp -- VNF Validation Platform
[oom.git] / kubernetes / aaf / charts / aaf-cm / 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 repository: nexus3.onap.org:10001
28 image: onap/aaf/aaf_cm:2.1.2-SNAPSHOT
29 pullPolicy: Always
30
31
32 # default number of instances
33 replicaCount: 1
34
35 nodeSelector: {}
36
37 affinity: {}
38
39 # probe configuration parameters
40 liveness:
41   initialDelaySeconds: 300
42   periodSeconds: 10
43   # necessary to disable liveness probe when setting breakpoints
44   # in debugger so K8s doesn't restart unresponsive container
45   enabled: true
46
47 readiness:
48   initialDelaySeconds: 30
49   periodSeconds: 10
50
51 service:
52   name: aaf-cm
53   type: ClusterIP
54   portName: aaf-cm
55   #targetPort
56   internalPort: 8150
57   #port
58   externalPort: 8150
59
60 ingress:
61   enabled: false
62
63 # Configure resource requests and limits
64 resources:
65   small:
66     limits:
67       cpu: 200m
68       memory: 800Mi
69     requests:
70       cpu: 20m
71       memory: 500Mi
72   large:
73     limits:
74       cpu: 400m
75       memory: 1Gi
76     requests:
77       cpu: 40m
78       memory: 600Mi
79   unlimited: {}