blob: a1a1abe55a176fb54c2c83f1b09023f4cea26654 [file] [log] [blame]
kj52dfb132018-03-27 15:50:39 +03001# Copyright © 2017 Amdocs, Bell Canada
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +02002# Modifications © 2020 AT&T, Orange
kj52dfb132018-03-27 15:50:39 +03003#
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.
Sylvain Desbureaux0de302a2020-06-05 15:19:22 +020015global:
16 nodePortPrefix: 302
Sylvain Desbureaux0de302a2020-06-05 15:19:22 +020017 persistence:
18 enabled: true
19 # Standard OOM
20 pullPolicy: "Always"
kj52dfb132018-03-27 15:50:39 +030021
dsingh.27864a34bf2018-09-21 05:11:00 -040022flavor: small
kj52dfb132018-03-27 15:50:39 +030023
24#################################################################
25# Application configuration defaults.
26#################################################################
kj52dfb132018-03-27 15:50:39 +030027# application configuration
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020028replicaCount: 1
kj52dfb132018-03-27 15:50:39 +030029
kj52dfb132018-03-27 15:50:39 +030030nodeSelector: {}
31
32affinity: {}
33
34# probe configuration parameters
35liveness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050036 initialDelaySeconds: 120
kj52dfb132018-03-27 15:50:39 +030037 periodSeconds: 10
38 # necessary to disable liveness probe when setting breakpoints
39 # in debugger so K8s doesn't restart unresponsive container
40 enabled: true
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020041 port: tcp-cql
42
ChrisC73876b42020-05-27 15:45:34 +020043image: onap/aaf/aaf_cass:2.1.23
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020044
45config:
46 cluster_name: osaaf
47 heap_new_size: 512M
48 max_heap_size: 1024M
49 dc: dc1
kj52dfb132018-03-27 15:50:39 +030050
51readiness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050052 initialDelaySeconds: 5
kj52dfb132018-03-27 15:50:39 +030053 periodSeconds: 10
54
55service:
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000056 name: aaf-cass
kj52dfb132018-03-27 15:50:39 +030057 type: ClusterIP
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020058 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
kj52dfb132018-03-27 15:50:39 +030067
68ingress:
69 enabled: false
70
dsingh.27864a34bf2018-09-21 05:11:00 -040071# Configure resource requests and limits
Sylvain Desbureauxc10829f2019-11-29 14:43:58 +010072resources:
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020073 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: {}
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +000088
89persistence:
90 enabled: true
91 #existingClaim:
92 mountPath: /dockerdata-nfs
93 mountSubPath: "cass"
94 volumeReclaimPolicy: Retain
95 accessMode: ReadWriteOnce
Sylvain Desbureaux7446b3b2021-05-07 08:14:54 +020096 size: 5Gi