moving project to gitea

This commit is contained in:
2026-07-26 09:35:26 +02:00
parent c1a36ea29b
commit 4486fdcc8a
61 changed files with 33940 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: beetroot
labels:
app: beetroot
spec:
replicas: 1
selector:
matchLabels:
app: beetroot
template:
metadata:
labels:
app: beetroot
spec:
containers:
- name: beetroot
image: registry.internal.uia.no/ikt210-g-25h-skyinfrastruktur/labgroup4/exercise03
ports:
- containerPort: 8080
name: http
imagePullSecrets:
- name: regcred
---
apiVersion: v1
kind: Service
metadata:
name: beetroot
labels:
app: beetroot
spec:
type: ClusterIP
ports:
- port: 8080
targetPort: 8080
protocol: TCP
name: http
selector:
app: beetroot

View File

@@ -0,0 +1,3 @@
resources:
- deploy.yaml