From 97b0f457d1269503f4c187e5daea738517180a13 Mon Sep 17 00:00:00 2001 From: "maximilian.bartz" Date: Fri, 8 Aug 2025 15:48:57 +0200 Subject: [PATCH] added lb for windows dev machine --- network/loadbalancers/windows-dev-lb.yaml | 29 +++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 network/loadbalancers/windows-dev-lb.yaml diff --git a/network/loadbalancers/windows-dev-lb.yaml b/network/loadbalancers/windows-dev-lb.yaml new file mode 100644 index 0000000..5b1f064 --- /dev/null +++ b/network/loadbalancers/windows-dev-lb.yaml @@ -0,0 +1,29 @@ +--- +apiVersion: v1 +kind: Service +metadata: + name: windows-lb + namespace: ${TENANT_NAMESPACE} + labels: + app.kubernetes.io/component: windows-lb +spec: + type: LoadBalancer + ports: + - port: 8080 + name: http + targetPort: 8080 + protocol: TCP + - port: 443 + name: https + targetPort: 443 + protocol: TCP + - port: 65022 + name: ssh + targetPort: 22 + protocol: TCP + - port: 3389 + name: rdp + targetPort: 3389 + protocol: TCP + selector: + kubevirt.io/domain: windows-vm-standard-dev