zkt25/z2/deployment.yaml
2025-04-03 11:57:59 +02:00

60 lines
1.2 KiB
YAML

---
apiVersion: apps/v1
kind: Deployment
metadata:
name: battleship-backend
namespace: battleship-app
labels:
app: battleship-backend
spec:
replicas: 1
selector:
matchLabels:
app: battleship-backend
template:
metadata:
labels:
app: battleship-backend
spec:
containers:
- name: battleship-backend
image: battleship-backend:latest
imagePullPolicy: Never
ports:
- containerPort: 4000
env:
- name: DB_HOST
value: mysql
- name: DB_PORT
value: "3306"
- name: DB_USER
value: root
- name: DB_PASSWORD
value: somepassword
- name: DB_NAME
value: battleship
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: battleship-frontend
namespace: battleship-app
labels:
app: battleship-frontend
spec:
replicas: 1
selector:
matchLabels:
app: battleship-frontend
template:
metadata:
labels:
app: battleship-frontend
spec:
containers:
- name: battleship-frontend
image: battleship-frontend:latest
imagePullPolicy: Never
ports:
- containerPort: 80