k8s-deployment.yaml aktualisiert
All checks were successful
build / build (push) Successful in 14s

This commit is contained in:
Daniel.Sy 2025-10-20 12:18:17 +00:00
parent a748cc08b4
commit 12657eb4c4

View file

@ -1,23 +1,15 @@
apiVersion: apps/v1 apiVersion: v1
kind: Deployment kind: Pod
metadata: metadata:
name: garm name: garm
labels:
run: garm
mexDeployGen: kubernetes-basic
spec: spec:
replicas: 1 containers:
selector: - name: garm
matchLabels: image: ###IMAGETAG###
run: garm imagePullPolicy: Always
template: ports:
metadata: - containerPort: 80
labels: protocol: TCP
run: garm
mexDeployGen: kubernetes-basic
spec:
volumes:
containers:
- name: garm
image: ###IMAGETAG###
imagePullPolicy: Always
ports:
- containerPort: 80
protocol: TCP