izaac-frontend/deployment.yml
Jakub K 748ece7c1c
All checks were successful
continuous-integration/drone Build is passing
rename deployment
2023-11-19 20:40:32 +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