From 464288b3a6864886ae5d4b174947367f46018fea Mon Sep 17 00:00:00 2001 From: William P Date: Thu, 20 Mar 2025 08:43:40 -0400 Subject: [PATCH] add vlmcsd --- vlmcsd/deployment.yaml | 23 +++++++++++++++++++++++ vlmcsd/svc.yaml | 11 +++++++++++ 2 files changed, 34 insertions(+) create mode 100644 vlmcsd/deployment.yaml create mode 100644 vlmcsd/svc.yaml diff --git a/vlmcsd/deployment.yaml b/vlmcsd/deployment.yaml new file mode 100644 index 0000000..c833120 --- /dev/null +++ b/vlmcsd/deployment.yaml @@ -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 diff --git a/vlmcsd/svc.yaml b/vlmcsd/svc.yaml new file mode 100644 index 0000000..2ae2d05 --- /dev/null +++ b/vlmcsd/svc.yaml @@ -0,0 +1,11 @@ +apiVersion: v1 +kind: Service +metadata: + name: vlmcsd-lb +spec: + type: LoadBalancer + selector: + app: vlmcsd + ports: + - port: 1688 + targetPort: 1688