12345678910111213141516171819202122232425262728293031323334 |
- 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
|