Files
nova/ctrl/k8s/base/ui.yaml
2026-04-12 07:19:48 -03:00

45 lines
758 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: ui
namespace: unt
spec:
replicas: 1
selector:
matchLabels:
app: ui
template:
metadata:
labels:
app: ui
spec:
containers:
- name: ui
image: unt-ui
ports:
- containerPort: 80
readinessProbe:
httpGet:
path: /
port: 80
initialDelaySeconds: 2
periodSeconds: 10
resources:
requests:
memory: 64Mi
cpu: 50m
limits:
memory: 128Mi
---
apiVersion: v1
kind: Service
metadata:
name: ui
namespace: unt
spec:
selector:
app: ui
ports:
- port: 80
targetPort: 80