2 Commits

Author SHA1 Message Date
2aadba7822 Added permissive network policy for webhook 2025-07-11 19:38:12 +02:00
599a4d26d5 Added load balancer 2025-07-11 19:37:22 +02:00
2 changed files with 26 additions and 0 deletions

View File

@ -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

View File

@ -0,0 +1,12 @@
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: allow-all-to-flux
namespace: flux-system
spec:
podSelector: {}
ingress:
- {}
policyTypes:
- Ingress