forked from andreasknoepfle/kubernetes_training_image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.yml
88 lines (86 loc) · 1.48 KB
/
app.yml
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
apiVersion: apps/v1
kind: Deployment
metadata:
name: k8s-training-deployment
labels:
app: k8s-training
spec:
replicas: 3
selector:
matchLabels:
app: k8s-training
template:
metadata:
labels:
app: k8s-training
spec:
containers:
- name: training
image: andreasknoepfle/kubernetes_training_image:latest
env:
- name: FOO
value: "Surprise cat"
livenessProbe:
httpGet:
path: /status
port: 4567
initialDelaySeconds: 6
periodSeconds: 5
---
apiVersion: v1
kind: Service
metadata:
name: k8s-training-service
spec:
type: LoadBalancer
ports:
- port: 4567
selector:
app: k8s-training
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: redis
spec:
selector:
matchLabels:
app: redis
template:
metadata:
labels:
app: redis
spec:
containers:
- name: redis
image: redis
args: ["--appendonly", "yes"]
volumeMounts:
- name: redis-volume
mountPath: /data
volumes:
- name: redis-volume
persistentVolumeClaim:
claimName: redis-storage
---
apiVersion: v1
kind: Service
metadata:
name: redis
spec:
type: ClusterIP
ports:
- port: 6379
selector:
app: redis
---
kind: PersistentVolumeClaim
apiVersion: v1
metadata:
name: redis-storage
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi