chore(deploy): remove superseded raw k8s manifests

This commit is contained in:
2026-02-22 09:33:41 +01:00
parent 7780c3378b
commit 10e1d15462
4 changed files with 0 additions and 84 deletions

View File

@@ -1,44 +0,0 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: backend
namespace: marktvogt
labels:
app: backend
spec:
replicas: 2
selector:
matchLabels:
app: backend
template:
metadata:
labels:
app: backend
spec:
containers:
- name: backend
image: registry.itsh.dev/marktvogt/backend:latest
ports:
- containerPort: 8080
envFrom:
- secretRef:
name: backend-env
livenessProbe:
httpGet:
path: /healthz
port: 8080
initialDelaySeconds: 5
periodSeconds: 10
readinessProbe:
httpGet:
path: /readyz
port: 8080
initialDelaySeconds: 5
periodSeconds: 10
resources:
requests:
cpu: 100m
memory: 128Mi
limits:
cpu: 500m
memory: 256Mi

View File

@@ -1,23 +0,0 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: backend
namespace: marktvogt
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
spec:
tls:
- hosts:
- api.marktvogt.de
secretName: backend-tls
rules:
- host: api.marktvogt.de
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: backend
port:
number: 80

View File

@@ -1,4 +0,0 @@
apiVersion: v1
kind: Namespace
metadata:
name: marktvogt

View File

@@ -1,13 +0,0 @@
apiVersion: v1
kind: Service
metadata:
name: backend
namespace: marktvogt
spec:
selector:
app: backend
ports:
- port: 80
targetPort: 8080
protocol: TCP
type: ClusterIP