Merge "[DMAAP] DMaaP ServiceMesh compatibility"
[oom.git] / kubernetes / aaf / components / 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 global:
16   nodePortPrefix: 302
17   persistence:
18     enabled: true
19   # Standard OOM
20   pullPolicy: "Always"
21
22 flavor: small
23
24 #################################################################
25 # Application configuration defaults.
26 #################################################################
27 # application configuration
28 replicaCount: 1
29
30 nodeSelector: {}
31
32 affinity: {}
33
34 # probe configuration parameters
35 liveness:
36   initialDelaySeconds: 120
37   periodSeconds: 10
38   # necessary to disable liveness probe when setting breakpoints
39   # in debugger so K8s doesn't restart unresponsive container
40   enabled: true
41   port: tcp-cql
42
43 image: onap/aaf/aaf_cass:2.1.23
44
45 config:
46   cluster_name: osaaf
47   heap_new_size: 512M
48   max_heap_size: 1024M
49   dc: dc1
50
51 readiness:
52   initialDelaySeconds: 5
53   periodSeconds: 10
54
55 service:
56   name: aaf-cass
57   type: ClusterIP
58   ports:
59     - name: tcp-intra
60       port: 7000
61     - name: tls
62       port: 7001
63     - name: tcp-cql
64       port: 9042
65     - name: tcp-thrift
66       port: 9160
67
68 ingress:
69   enabled: false
70
71 # Configure resource requests and limits
72 resources:
73   small:
74     limits:
75       cpu: 2100m
76       memory: 1792Mi
77     requests:
78       cpu: 30m
79       memory: 1280Mi
80   large:
81     limits:
82       cpu: 4
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: 5Gi