From 599a4d26d51168f6e8d3bc2f5ee77817b3636581 Mon Sep 17 00:00:00 2001 From: Marcin-Ramotowski Date: Fri, 11 Jul 2025 19:37:22 +0200 Subject: [PATCH] Added load balancer --- clusters/prod/load-balancer.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 clusters/prod/load-balancer.yaml diff --git a/clusters/prod/load-balancer.yaml b/clusters/prod/load-balancer.yaml new file mode 100644 index 0000000..cd7cd1a --- /dev/null +++ b/clusters/prod/load-balancer.yaml @@ -0,0 +1,14 @@ +apiVersion: v1 +kind: Service +metadata: + name: receiver + namespace: flux-system +spec: + type: LoadBalancer + selector: + app: notification-controller + ports: + - name: http + port: 80 + protocol: TCP + targetPort: 9292 \ No newline at end of file