blob: c5e5811fd1d963da97459f1e2e7261dc5a78e532 [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
17 # Readiness image
18 readinessRepository: oomk8s
19 readinessImage: readiness-check:2.0.2
20 # Ubuntu Init image
21 ubuntuInitRepository: registry.hub.docker.com
22 ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
23 # Logging image
24 loggingRepository: docker.elastic.co
25 loggingImage: beats/filebeat:5.5.0
26 # BusyBox image
27 busyboxRepository: registry.hub.docker.com
28 busyboxImage: library/busybox:1.31
29 persistence:
30 enabled: true
31 # Standard OOM
32 pullPolicy: "Always"
33 repository: "nexus3.onap.org:10001"
kj52dfb132018-03-27 15:50:39 +030034
dsingh.27864a34bf2018-09-21 05:11:00 -040035flavor: small
kj52dfb132018-03-27 15:50:39 +030036
37#################################################################
38# Application configuration defaults.
39#################################################################
kj52dfb132018-03-27 15:50:39 +030040# application configuration
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020041replicaCount: 1
kj52dfb132018-03-27 15:50:39 +030042
kj52dfb132018-03-27 15:50:39 +030043nodeSelector: {}
44
45affinity: {}
46
47# probe configuration parameters
48liveness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050049 initialDelaySeconds: 120
kj52dfb132018-03-27 15:50:39 +030050 periodSeconds: 10
51 # necessary to disable liveness probe when setting breakpoints
52 # in debugger so K8s doesn't restart unresponsive container
53 enabled: true
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020054 port: tcp-cql
55
ChrisC73876b42020-05-27 15:45:34 +020056image: onap/aaf/aaf_cass:2.1.23
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020057
58config:
59 cluster_name: osaaf
60 heap_new_size: 512M
61 max_heap_size: 1024M
62 dc: dc1
kj52dfb132018-03-27 15:50:39 +030063
64readiness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050065 initialDelaySeconds: 5
kj52dfb132018-03-27 15:50:39 +030066 periodSeconds: 10
67
68service:
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000069 name: aaf-cass
kj52dfb132018-03-27 15:50:39 +030070 type: ClusterIP
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020071 ports:
72 - name: tcp-intra
73 port: 7000
74 - name: tls
75 port: 7001
76 - name: tcp-cql
77 port: 9042
78 - name: tcp-thrift
79 port: 9160
kj52dfb132018-03-27 15:50:39 +030080
81ingress:
82 enabled: false
83
dsingh.27864a34bf2018-09-21 05:11:00 -040084# Configure resource requests and limits
Sylvain Desbureauxc10829f2019-11-29 14:43:58 +010085resources:
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020086 small:
87 limits:
88 cpu: 2100m
89 memory: 1792Mi
90 requests:
91 cpu: 30m
92 memory: 1280Mi
93 large:
94 limits:
95 cpu: 4
96 memory: 12000Mi
97 requests:
98 cpu: 40m
99 memory: 9000Mi
100 unlimited: {}
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +0000101
102persistence:
103 enabled: true
104 #existingClaim:
105 mountPath: /dockerdata-nfs
106 mountSubPath: "cass"
107 volumeReclaimPolicy: Retain
108 accessMode: ReadWriteOnce
Instrumentalcc3a0bd2019-05-01 14:18:49 -0500109 size: 20Gi