Files
toutoukan/docker/userService/userService.yaml
2025-09-16 01:19:13 +08:00

26 lines
453 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: title
labels:
app: title
spec:
replicas: 1
selector:
matchLabels:
app: title
template:
metadata:
name: title
labels:
app: title
spec:
containers:
- name: title
image: nginx
imagePullPolicy: IfNotPresent
ports:
- containerPort: 80
protocol: TCP
restartPolicy: Always