mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-13 09:50:18 +00:00
34 lines
677 B
YAML
34 lines
677 B
YAML
apiVersion: apps/v1beta2
|
|
kind: StatefulSet
|
|
metadata:
|
|
name: nginx
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: nginx-statefulset
|
|
updateStrategy:
|
|
type: RollingUpdate
|
|
serviceName: "nginx"
|
|
replicas: 0
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: nginx-statefulset
|
|
spec:
|
|
terminationGracePeriodSeconds: 5
|
|
containers:
|
|
- name: nginx
|
|
image: k8s.gcr.io/nginx-slim:0.8
|
|
ports:
|
|
- containerPort: 80
|
|
name: web
|
|
command:
|
|
- sh
|
|
- -c
|
|
- 'while true; do sleep 1; done'
|
|
- name: pause
|
|
image: k8s.gcr.io/pause:2.0
|
|
ports:
|
|
- containerPort: 81
|
|
name: web-2
|