blob: eee1a3a5229fda6d8bf3eb613706dff72c4b3038 [file] [log] [blame]
Nelson,Thomas(tn1381)(arthurdent3)4807fdf2018-09-19 16:52:36 -04001# Copyright © 2018 AT&T, Amdocs, Bell Canada Intellectual Property. All rights reserved.
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15# Default values for cassandra.
16# This is a YAML-formatted file.
17# Declare variables to be passed into your templates.
18global:
19 pullPolicy: Always
20 repository: nexus3.onap.org:10001
21
22 # readiness check
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020023 readinessImage: onap/oom/readiness:3.0.1
24 # Set default to 4 hrs.
Nelson, Thomas (tn1381)a6cb6172019-05-30 12:31:19 -040025 # On slow environments dealys this long have been seen.
26 readinessTimeout: 240
Nelson,Thomas(tn1381)(arthurdent3)4807fdf2018-09-19 16:52:36 -040027 # logging agent
28 loggingRepository: docker.elastic.co
29 loggingImage: beats/filebeat:5.5.0
30
31 replicaCount: 3
32
33job:
34 host: music-cassandra
35 port: 9042
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020036 busybox:
Nelson,Thomas(tn1381)(arthurdent3)4807fdf2018-09-19 16:52:36 -040037 image: library/busybox:latest
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020038 cassandra:
Gary Wu72901cd2018-11-15 18:27:40 -080039 image: onap/music/cassandra_job:3.0.24
Nelson,Thomas(tn1381)(arthurdent3)4807fdf2018-09-19 16:52:36 -040040 timeout: 30
41 delay: 120
42cql:
43 keyspace:
44 replicationClass: "SimpleStrategy"
45 replicationFactor: 3
46 adminUser:
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020047 username: nelson24
48 password: nelson24
Nelson,Thomas(tn1381)(arthurdent3)4807fdf2018-09-19 16:52:36 -040049 passwordReplace: A2C4E6G8I0J2L4O6Q8S0U2W4Y6
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020050
Nelson,Thomas(tn1381)(arthurdent3)4807fdf2018-09-19 16:52:36 -040051podManagementPolicy: OrderedReady
52updateStrategy:
53 type: OnDelete
54
55ingress:
56 enabled: false
57
58tolerations: []
59
60affinity: {}
61
62persistence:
63 enabled: true
64
65resources:
66 limits:
67 cpu: 1
68 memory: 1Gi
69 requests:
70 cpu: 1
71 memory: 1Gi