-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathredis-all.yaml
49 lines (49 loc) · 857 Bytes
/
redis-all.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/v1
kind: Deployment
metadata:
labels:
app: redis
name: redis
namespace: netbox
spec:
replicas: 1
selector:
matchLabels:
app: redis
strategy:
type: Recreate
template:
metadata:
labels:
app: redis
spec:
containers:
- image: redis:5.0.6-alpine
name: redis
imagePullPolicy: IfNotPresent
command:
- /bin/sh
- -c
- redis-server --requirepass $(REDIS_PASSWORD)
ports:
- containerPort: 6379
env:
- name: REDIS_PASSWORD
value: pv8eesoXWOobU8fV
---
apiVersion: v1
kind: Service
metadata:
labels:
app: redis
name: redis
namespace: netbox
spec:
clusterIP: None
ports:
- name: "6379"
port: 6379
targetPort: 6379
selector:
app: redis