1d806bc6310da5bfb4572870827419b359c59868
[oom.git] / kubernetes / aaf / charts / aaf-cs / 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 flavor: small
21
22 #################################################################
23 # Application configuration defaults.
24 #################################################################
25 # application image
26 repository: nexus3.onap.org:10001
27 image: onap/aaf/aaf_cass:2.1.8
28 pullPolicy: Always
29
30 # application configuration
31 config: {}
32
33 # default number of instances
34 replicaCount: 1
35
36 nodeSelector: {}
37
38 affinity: {}
39
40 # probe configuration parameters
41 liveness:
42   initialDelaySeconds: 300
43   periodSeconds: 10
44   # necessary to disable liveness probe when setting breakpoints
45   # in debugger so K8s doesn't restart unresponsive container
46   enabled: true
47
48 readiness:
49   initialDelaySeconds: 120
50   periodSeconds: 10
51
52 service:
53   name: aaf-cass
54   type: ClusterIP
55   portName: aaf-cs
56   #targetPort
57   internalPort: 7000
58   #port
59   externalPort: 7000
60
61   internalPort2: 7001
62   externalPort2: 7001
63   internalPort3: 9042
64   externalPort3: 9042
65   internalPort4: 9160
66   externalPort4: 9160
67
68 ingress:
69   enabled: false
70
71 # Configure resource requests and limits
72 resources:
73   small:
74     limits:
75       cpu: 200m
76       memory: 10000Mi
77     requests:
78       cpu: 10m
79       memory: 8500Mi
80   large:
81     limits:
82       cpu: 400m
83       memory: 12000Mi
84     requests:
85       cpu: 40m
86       memory: 9000Mi
87   unlimited: {}
88
89 persistence:
90   enabled: true
91   #existingClaim:
92   mountPath: /dockerdata-nfs
93   mountSubPath: "cass"
94   volumeReclaimPolicy: Retain
95   accessMode: ReadWriteOnce
96   size: 10Gi
97   storageClass: "manual"