blob: 83ed20f5f75f15cd4dadcf4df8024978f4832210 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
#
#
# The addition below can be executed after the invocation of
# the original service_delivery_controller_opnfv.yaml
# by invoking:
# % kubectl create -f <(istioctl kube-inject --debug -f cassandra.yaml)
#
#
#
# Cassandra Statefulset
#
# Assumption:
# - The Cassandra Statefulset right now assumes that
# the service is deployed in the 'default' namespace
# therefore the environment variable CASSANDRA_SEEDS is set to
# "cassandra-0.cassandra.default.svc.cluster.local" below.
# if you want to use your own name space other than 'default'
# the value becomes:
# "cassandra-0.cassandra.<NAMESPACE_NAME>.svc.cluster.local"
# note that this value rely on a functioning DNS on kubernetes to resolve the IP
#
# This static method can be made dynamic by using Helm
# or bash script to replace the namespace on the fly.
#
# - Cassandra launch only 1 replica in the cluster
# to dynamically scale up or down, you can use:
# kubectl edit statefulset cassandra
# and edit the value of the replica key
#
#
#
---
apiVersion: v1
kind: Service
metadata:
labels:
app: cassandra
name: cassandra
spec:
clusterIP: None
ports:
- port: 9042
selector:
app: cassandra
---
apiVersion: apps/v1
kind: StatefulSet
metadata:
name: cassandra
labels:
app: cassandra
spec:
serviceName: cassandra
replicas: 1
selector:
matchLabels:
app: cassandra
template:
metadata:
labels:
app: cassandra
spec:
terminationGracePeriodSeconds: 1800
containers:
- name: cassandra
image: cassandra:3
imagePullPolicy: Always
ports:
- containerPort: 7000
name: intra-node
- containerPort: 7001
name: tls-intra-node
- containerPort: 7199
name: jmx
- containerPort: 9042
name: cql
resources:
limits:
cpu: "500m"
memory: 1Gi
requests:
cpu: "500m"
memory: 1Gi
env:
- name: MAX_HEAP_SIZE
value: 512M
- name: HEAP_NEWSIZE
value: 100M
- name: CASSANDRA_SEEDS
value: "cassandra-0.cassandra.default.svc.cluster.local"
- name: CASSANDRA_CLUSTER_NAME
value: "MyCassandraDemo"
- name: CASSANDRA_DC
value: "DC1-K8Demo"
- name: CASSANDRA_RACK
value: "Rack1-K8Demo"
|