blob: ac18195939532bd3a238ff8fff94dd80a820afb8 [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
23 readinessRepository: oomk8s
24 readinessImage: readiness-check:2.0.0
Nelson, Thomas (tn1381)a6cb6172019-05-30 12:31:19 -040025 # Set default to 4 hrs.
26 # On slow environments dealys this long have been seen.
27 readinessTimeout: 240
Nelson,Thomas(tn1381)(arthurdent3)4807fdf2018-09-19 16:52:36 -040028 # logging agent
29 loggingRepository: docker.elastic.co
30 loggingImage: beats/filebeat:5.5.0
31
32 replicaCount: 3
33
34job:
35 host: music-cassandra
36 port: 9042
37 busybox:
38 image: library/busybox:latest
39 cassandra:
Gary Wu72901cd2018-11-15 18:27:40 -080040 image: onap/music/cassandra_job:3.0.24
Nelson,Thomas(tn1381)(arthurdent3)4807fdf2018-09-19 16:52:36 -040041 timeout: 30
42 delay: 120
43cql:
44 keyspace:
45 replicationClass: "SimpleStrategy"
46 replicationFactor: 3
47 adminUser:
48 username: nelson24
49 password: nelson24
50 passwordReplace: A2C4E6G8I0J2L4O6Q8S0U2W4Y6
51
52podManagementPolicy: OrderedReady
53updateStrategy:
54 type: OnDelete
55
56ingress:
57 enabled: false
58
59tolerations: []
60
61affinity: {}
62
63persistence:
64 enabled: true
65
66resources:
67 limits:
68 cpu: 1
69 memory: 1Gi
70 requests:
71 cpu: 1
72 memory: 1Gi