forked from cqyisbug/redis-in-k8s
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsts-redis-cluster.yaml
49 lines (49 loc) · 1.15 KB
/
sts-redis-cluster.yaml
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
apiVersion: apps/v1beta1
kind: StatefulSet
metadata:
name: sts-redis-cluster
spec:
serviceName: "svc-redis-cluster"
replicas: 6
template:
metadata:
labels:
name: sts-redis-cluster
environment: test
spec:
terminationGracePeriodSeconds: 10
containers:
- name: cntr-redis-cluster
image: $YourImage
imagePullPolicy: Always
env:
- name: CLUSTER
value: "true"
- name: REDIS_PORT
value: "6380"
- name: API_SERVER_ADDR
value: "172.20.0.12:8080"
- name: LOG_LEVEL
value: 0
- name: MY_POD_IP
valueFrom:
fieldRef:
fieldPath: status.podIP
ports:
- containerPort: 6380
volumeMounts:
- name: rediscluster
mountPath: /data/redis
securityContext:
capabilities: {}
privileged: true
volumeClaimTemplates:
- metadata:
name: rediscluster
annotations:
volume.beta.kubernetes.io/storage-class: "fast"
spec:
accessModes: [ "ReadWriteOnce" ]
resources:
requests:
storage: 1Gi