blob: ff34cbd5bf4beb1740dfbe0c4720dc0f5b41a250 [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
25
26 # logging agent
27 loggingRepository: docker.elastic.co
28 loggingImage: beats/filebeat:5.5.0
29
30 replicaCount: 3
31
32job:
33 host: music-cassandra
34 port: 9042
35 busybox:
36 image: library/busybox:latest
37 cassandra:
Gary Wu72901cd2018-11-15 18:27:40 -080038 image: onap/music/cassandra_job:3.0.24
Nelson,Thomas(tn1381)(arthurdent3)4807fdf2018-09-19 16:52:36 -040039 timeout: 30
40 delay: 120
41cql:
42 keyspace:
43 replicationClass: "SimpleStrategy"
44 replicationFactor: 3
45 adminUser:
46 username: nelson24
47 password: nelson24
48 passwordReplace: A2C4E6G8I0J2L4O6Q8S0U2W4Y6
49
50podManagementPolicy: OrderedReady
51updateStrategy:
52 type: OnDelete
53
54ingress:
55 enabled: false
56
57tolerations: []
58
59affinity: {}
60
61persistence:
62 enabled: true
63
64resources:
65 limits:
66 cpu: 1
67 memory: 1Gi
68 requests:
69 cpu: 1
70 memory: 1Gi