3d9f21e297dc4b000a3c38c06a65b0f5d8fae3a1
[oom.git] / kubernetes / aaf / charts / aaf-cass / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications © 2020 AT&T, Orange
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 flavor: small
17
18 #################################################################
19 # Application configuration defaults.
20 #################################################################
21 # application configuration
22 replicaCount: 1
23
24 nodeSelector: {}
25
26 affinity: {}
27
28 # probe configuration parameters
29 liveness:
30   initialDelaySeconds: 120
31   periodSeconds: 10
32   # necessary to disable liveness probe when setting breakpoints
33   # in debugger so K8s doesn't restart unresponsive container
34   enabled: true
35   port: tcp-cql
36
37 image: onap/aaf/aaf_cass:2.1.20
38
39 config:
40   cluster_name: osaaf
41   heap_new_size: 512M
42   max_heap_size: 1024M
43   dc: dc1
44
45 readiness:
46   initialDelaySeconds: 5
47   periodSeconds: 10
48
49 service:
50   name: aaf-cass
51   type: ClusterIP
52   ports:
53     - name: tcp-intra
54       port: 7000
55     - name: tls
56       port: 7001
57     - name: tcp-cql
58       port: 9042
59     - name: tcp-thrift
60       port: 9160
61
62 ingress:
63   enabled: false
64
65 # Configure resource requests and limits
66 resources:
67   small:
68     limits:
69       cpu: 2100m
70       memory: 1792Mi
71     requests:
72       cpu: 30m
73       memory: 1280Mi
74   large:
75     limits:
76       cpu: 4
77       memory: 12000Mi
78     requests:
79       cpu: 40m
80       memory: 9000Mi
81   unlimited: {}
82
83 persistence:
84   enabled: true
85   #existingClaim:
86   mountPath: /dockerdata-nfs
87   mountSubPath: "cass"
88   volumeReclaimPolicy: Retain
89   accessMode: ReadWriteOnce
90   size: 20Gi