blob: 3d9f21e297dc4b000a3c38c06a65b0f5d8fae3a1 [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.
15
dsingh.27864a34bf2018-09-21 05:11:00 -040016flavor: small
kj52dfb132018-03-27 15:50:39 +030017
18#################################################################
19# Application configuration defaults.
20#################################################################
kj52dfb132018-03-27 15:50:39 +030021# application configuration
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020022replicaCount: 1
kj52dfb132018-03-27 15:50:39 +030023
kj52dfb132018-03-27 15:50:39 +030024nodeSelector: {}
25
26affinity: {}
27
28# probe configuration parameters
29liveness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050030 initialDelaySeconds: 120
kj52dfb132018-03-27 15:50:39 +030031 periodSeconds: 10
32 # necessary to disable liveness probe when setting breakpoints
33 # in debugger so K8s doesn't restart unresponsive container
34 enabled: true
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020035 port: tcp-cql
36
37image: onap/aaf/aaf_cass:2.1.20
38
39config:
40 cluster_name: osaaf
41 heap_new_size: 512M
42 max_heap_size: 1024M
43 dc: dc1
kj52dfb132018-03-27 15:50:39 +030044
45readiness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050046 initialDelaySeconds: 5
kj52dfb132018-03-27 15:50:39 +030047 periodSeconds: 10
48
49service:
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000050 name: aaf-cass
kj52dfb132018-03-27 15:50:39 +030051 type: ClusterIP
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020052 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
kj52dfb132018-03-27 15:50:39 +030061
62ingress:
63 enabled: false
64
dsingh.27864a34bf2018-09-21 05:11:00 -040065# Configure resource requests and limits
Sylvain Desbureauxc10829f2019-11-29 14:43:58 +010066resources:
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020067 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: {}
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +000082
83persistence:
84 enabled: true
85 #existingClaim:
86 mountPath: /dockerdata-nfs
87 mountSubPath: "cass"
88 volumeReclaimPolicy: Retain
89 accessMode: ReadWriteOnce
Instrumentalcc3a0bd2019-05-01 14:18:49 -050090 size: 20Gi