blob: bec64d817c88a86a70a881421cb29d8f69ef543f [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
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020018 readinessImage: onap/oom/readiness:3.0.1
Sylvain Desbureaux0de302a2020-06-05 15:19:22 +020019 # Ubuntu Init image
20 ubuntuInitRepository: registry.hub.docker.com
21 ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
22 # Logging image
23 loggingRepository: docker.elastic.co
24 loggingImage: beats/filebeat:5.5.0
25 # BusyBox image
26 busyboxRepository: registry.hub.docker.com
27 busyboxImage: library/busybox:1.31
28 persistence:
29 enabled: true
30 # Standard OOM
31 pullPolicy: "Always"
32 repository: "nexus3.onap.org:10001"
kj52dfb132018-03-27 15:50:39 +030033
dsingh.27864a34bf2018-09-21 05:11:00 -040034flavor: small
kj52dfb132018-03-27 15:50:39 +030035
36#################################################################
37# Application configuration defaults.
38#################################################################
kj52dfb132018-03-27 15:50:39 +030039# application configuration
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020040replicaCount: 1
kj52dfb132018-03-27 15:50:39 +030041
kj52dfb132018-03-27 15:50:39 +030042nodeSelector: {}
43
44affinity: {}
45
46# probe configuration parameters
47liveness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050048 initialDelaySeconds: 120
kj52dfb132018-03-27 15:50:39 +030049 periodSeconds: 10
50 # necessary to disable liveness probe when setting breakpoints
51 # in debugger so K8s doesn't restart unresponsive container
52 enabled: true
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020053 port: tcp-cql
54
ChrisC73876b42020-05-27 15:45:34 +020055image: onap/aaf/aaf_cass:2.1.23
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020056
57config:
58 cluster_name: osaaf
59 heap_new_size: 512M
60 max_heap_size: 1024M
61 dc: dc1
kj52dfb132018-03-27 15:50:39 +030062
63readiness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050064 initialDelaySeconds: 5
kj52dfb132018-03-27 15:50:39 +030065 periodSeconds: 10
66
67service:
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000068 name: aaf-cass
kj52dfb132018-03-27 15:50:39 +030069 type: ClusterIP
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020070 ports:
71 - name: tcp-intra
72 port: 7000
73 - name: tls
74 port: 7001
75 - name: tcp-cql
76 port: 9042
77 - name: tcp-thrift
78 port: 9160
kj52dfb132018-03-27 15:50:39 +030079
80ingress:
81 enabled: false
82
dsingh.27864a34bf2018-09-21 05:11:00 -040083# Configure resource requests and limits
Sylvain Desbureauxc10829f2019-11-29 14:43:58 +010084resources:
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020085 small:
86 limits:
87 cpu: 2100m
88 memory: 1792Mi
89 requests:
90 cpu: 30m
91 memory: 1280Mi
92 large:
93 limits:
94 cpu: 4
95 memory: 12000Mi
96 requests:
97 cpu: 40m
98 memory: 9000Mi
99 unlimited: {}
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +0000100
101persistence:
102 enabled: true
103 #existingClaim:
104 mountPath: /dockerdata-nfs
105 mountSubPath: "cass"
106 volumeReclaimPolicy: Retain
107 accessMode: ReadWriteOnce
Instrumentalcc3a0bd2019-05-01 14:18:49 -0500108 size: 20Gi