izaac-frontend/deployment.yaml
2023-11-19 19:30:38 +01:00

31 lines
545 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: izaac-frontend
spec:
replicas: 1
selector:
matchLabels:
app: izaac-frontend
template:
metadata:
labels:
app: izaac-frontend
spec:
containers:
- name: izaac-frontend
image: registry.izaac.pl:5000/izaac-frontend:latest
ports:
- containerPort: 80
---
apiVersion: v1
kind: Service
metadata:
name: izaac-frontend
spec:
selector:
app: izaac-frontend
ports:
- protocol: TCP
port: 80
targetPort: 80