-
Notifications
You must be signed in to change notification settings - Fork 0
/
wuvt-site-redis-am.yaml
58 lines (58 loc) · 1.2 KB
/
wuvt-site-redis-am.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
50
51
52
53
54
55
56
57
58
apiVersion: v1
kind: Service
metadata:
name: wuvt-site-redis-am
labels:
app: wuvt-site-redis
instance: am
spec:
selector:
app: wuvt-site-redis
instance: am
ports:
- name: redis
protocol: TCP
port: 6379
---
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
labels:
app: wuvt-site-redis
instance: am
name: wuvt-site-redis-am
spec:
replicas: 1
template:
metadata:
labels:
app: wuvt-site-redis
instance: am
spec:
containers:
- name: redis
image: redis:4-alpine
args:
- '--requirepass $(REDIS_PASSWORD)'
- '--rename-command CONFIG ""'
- '--appendonly yes'
env:
- name: REDIS_PASSWORD
valueFrom:
secretKeyRef:
name: wuvt-site-redis-am
key: password
ports:
- containerPort: 6379
volumeMounts:
- name: redis-data
mountPath: /data
volumes:
- name: redis-data
hostPath:
path: /media/local-storage/wuvt-site-redis-am-data
nodeName: columbia
tolerations:
- key: node-role.kubernetes.io/dbserver
operator: Exists
effect: NoSchedule