Set up docker image and k8s deployment

This commit is contained in:
2025-02-28 12:51:11 -06:00
parent b7230950b2
commit f3e047eccc
8 changed files with 100 additions and 3 deletions

21
deployment.yaml Normal file
View File

@@ -0,0 +1,21 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: alttpr-backend
spec:
selector:
matchLabels:
app: alttpr-backend
template:
metadata:
labels:
app: alttpr-backend
spec:
nodeSelector:
kubernetes.io/os: linux
containers:
- name: alttpr-backend
image: alttpracr.azurecr.io/alttpr-backend
ports:
- containerPort: 8080
name: http