-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstatefulset-pvc.yaml
57 lines (57 loc) · 1.17 KB
/
statefulset-pvc.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
# Create Namespace
apiVersion: v1
kind: Namespace
metadata:
name: statefulset-pvc-namespace
---
# Create Service
apiVersion: v1
kind: Service
metadata:
name: nginx-app-service
namespace: statefulset-pvc-namespace
spec:
selector:
app-name: nginx-app
ports:
- name: server
port: 2888
targetPort: 2888
---
# Create StatefulSet with 2 Replicas + PVC
apiVersion: apps/v1
kind: StatefulSet
metadata:
name: nginx-app-statefulset
namespace: statefulset-pvc-namespace
spec:
selector:
matchLabels:
app-name: nginx-app
replicas: 2
serviceName: nginx-app-service
template:
metadata:
labels:
app-name: nginx-app
spec:
containers:
- name: app
image: nginx
ports:
- containerPort: 80
name: "http-server"
volumeMounts:
- mountPath: "/usr/share/nginx/html"
name: nginx-app-claim
restartPolicy: Always
volumeClaimTemplates:
- metadata:
name: nginx-app-claim
namespace: statefulset-pvc-namespace
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 500M