39 lines
743 B
YAML
39 lines
743 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: frontend
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: frontend
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: frontend
|
|
spec:
|
|
containers:
|
|
- name: frontend
|
|
image: localhost:5000/frontend:20250523-013240
|
|
ports:
|
|
- containerPort: 80
|
|
tolerations:
|
|
- key: "node.kubernetes.io/disk-pressure"
|
|
operator: "Exists"
|
|
effect: "NoSchedule"
|
|
tolerations:
|
|
- key: "node.kubernetes.io/disk-pressure"
|
|
operator: "Exists"
|
|
effect: "NoSchedule"
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: frontend
|
|
spec:
|
|
selector:
|
|
app: frontend
|
|
ports:
|
|
- port: 80
|
|
targetPort: 80
|