99 lines
2.5 KiB
YAML
99 lines
2.5 KiB
YAML
apiVersion: apps/v1
|
|
kind: StatefulSet
|
|
metadata:
|
|
name: cassandra
|
|
labels:
|
|
app: cassandra
|
|
spec:
|
|
serviceName: cassandra
|
|
replicas: 3
|
|
selector:
|
|
matchLabels:
|
|
app: cassandra
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: cassandra
|
|
spec:
|
|
terminationGracePeriodSeconds: 500
|
|
containers:
|
|
- name: cassandra
|
|
image: gcr.io/google-samples/cassandra:v13
|
|
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
|
|
securityContext:
|
|
capabilities:
|
|
add:
|
|
- IPC_LOCK
|
|
lifecycle:
|
|
preStop:
|
|
exec:
|
|
command:
|
|
- /bin/sh
|
|
- -c
|
|
- nodetool drain
|
|
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: "K8Demo"
|
|
- name: CASSANDRA_DC
|
|
value: "DC1-K8Demo"
|
|
- name: CASSANDRA_RACK
|
|
value: "Rack1-K8Demo"
|
|
- name: POD_IP
|
|
valueFrom:
|
|
fieldRef:
|
|
fieldPath: status.podIP
|
|
readinessProbe:
|
|
exec:
|
|
command:
|
|
- /bin/bash
|
|
- -c
|
|
- /ready-probe.sh
|
|
initialDelaySeconds: 15
|
|
timeoutSeconds: 5
|
|
# 这些卷挂载是持久的。它们类似内联申领,但并不完全相同,
|
|
# 因为这些卷挂载的名称需要与 StatefulSet 中某 Pod 卷完全匹配。
|
|
volumeMounts:
|
|
- name: cassandra-data
|
|
mountPath: /cassandra_data
|
|
# 这些将被控制器转换为卷申领,并挂载在上述路径。
|
|
# 请勿将此设置用于生产环境,除非使用了 GCEPersistentDisk 或其他 SSD 持久盘。
|
|
volumeClaimTemplates:
|
|
- metadata:
|
|
name: cassandra-data
|
|
spec:
|
|
accessModes: [ "ReadWriteOnce" ]
|
|
storageClassName: fast
|
|
resources:
|
|
requests:
|
|
storage: 1Gi
|
|
---
|
|
kind: StorageClass
|
|
apiVersion: storage.k8s.io/v1
|
|
metadata:
|
|
name: fast
|
|
provisioner: k8s.io/minikube-hostpath
|
|
parameters:
|
|
type: pd-ssd
|