add vlmcsd

This commit is contained in:
2025-03-20 08:43:40 -04:00
parent deef849129
commit 464288b3a6
2 changed files with 34 additions and 0 deletions

23
vlmcsd/deployment.yaml Normal file
View File

@@ -0,0 +1,23 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: vlmcsd
spec:
selector:
matchLabels:
app: vlmcsd
template:
metadata:
labels:
app: vlmcsd
spec:
containers:
- name: vlmcsd
image: mikolatero/vlmcsd
resources:
limits:
memory: "512Mi"
cpu: "500m"
livenessProbe:
tcpSocket:
port: 1688

11
vlmcsd/svc.yaml Normal file
View File

@@ -0,0 +1,11 @@
apiVersion: v1
kind: Service
metadata:
name: vlmcsd-lb
spec:
type: LoadBalancer
selector:
app: vlmcsd
ports:
- port: 1688
targetPort: 1688