29 lines
518 B
YAML
29 lines
518 B
YAML
|
apiVersion: apps/v1
|
||
|
kind: StatefulSet
|
||
|
metadata:
|
||
|
name: web
|
||
|
spec:
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app: nginx
|
||
|
serviceName: "nginx"
|
||
|
replicas: 3
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: nginx
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: nginx
|
||
|
image: nginx
|
||
|
ports:
|
||
|
- containerPort: 80
|
||
|
name: web
|
||
|
volumeMounts:
|
||
|
- name: www
|
||
|
mountPath: /usr/share/nginx/html
|
||
|
volumes:
|
||
|
- name: www
|
||
|
persistentVolumeClaim:
|
||
|
claimName: myclaim
|