Files
toutoukan/docker/userService/userService.yaml

26 lines
453 B
YAML
Raw Normal View History

2025-09-16 01:19:13 +08:00
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