22 lines
409 B
YAML
22 lines
409 B
YAML
apiVersion: apps/v1
|
|
kind: StatefulSet
|
|
metadata:
|
|
name: statefulset-pods
|
|
namespace: default
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: statefulset-pods
|
|
serviceName: nginx-prot
|
|
replicas: 1
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: statefulset-pods
|
|
spec:
|
|
containers:
|
|
- name: nginx
|
|
image: nginx:latest
|
|
ports:
|
|
- containerPort: 80
|
|
protocol: TCP |