Merge "Add missing props in network-name-gen chart"
[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 #################################################################
25 # Application configuration defaults.
26 #################################################################
27 # application image
28 repository: nexus3.onap.org:10001
29 image: onap/aaf/aaf_cm:2.1.1
30 pullPolicy: Always
31
32 # flag to enable debugging - application support required
33 debugEnabled: false
34
35 # application configuration
36 config: {}
37
38 # default number of instances
39 replicaCount: 1
40
41 nodeSelector: {}
42
43 affinity: {}
44
45 # probe configuration parameters
46 liveness:
47   initialDelaySeconds: 10
48   periodSeconds: 10
49   # necessary to disable liveness probe when setting breakpoints
50   # in debugger so K8s doesn't restart unresponsive container
51   enabled: true
52
53 readiness:
54   initialDelaySeconds: 10
55   periodSeconds: 10
56
57 service:
58   name: aaf-cm
59   type: ClusterIP
60   portName: aaf-cm
61   #targetPort
62   internalPort: 8150
63   #port
64   externalPort: 8150
65
66 ingress:
67   enabled: false
68
69 # Configure resource requests and limits
70 resources:
71   small:
72     limits:
73       cpu: 200m
74       memory: 800Mi
75     requests:
76       cpu: 20m
77       memory: 500Mi
78   large:
79     limits:
80       cpu: 400m
81       memory: 1Gi
82     requests:
83       cpu: 40m
84       memory: 600Mi
85   unlimited: {}