From 9c07b4013f8fcbb697a6c3e968ca4d3ce684abc5 Mon Sep 17 00:00:00 2001 From: Matthias Hinrichs Date: Tue, 5 May 2026 09:29:02 +0200 Subject: [PATCH] feat: add agentgateway-proxy deployment bundle and gateway configuration --- 03-agentgateway-proxy/fleet.yaml | 8 ++++++++ .../templates/agentgateway-proxy.yaml | 14 ++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 03-agentgateway-proxy/fleet.yaml create mode 100644 03-agentgateway-proxy/templates/agentgateway-proxy.yaml diff --git a/03-agentgateway-proxy/fleet.yaml b/03-agentgateway-proxy/fleet.yaml new file mode 100644 index 0000000..23c93f0 --- /dev/null +++ b/03-agentgateway-proxy/fleet.yaml @@ -0,0 +1,8 @@ +kind: Bundle +metadata: + name: agentgateway-proxy + +defaultNamespace: agentgateway-system + +dependsOn: + - name: fleet-ai-stack-01-agentgateway-crds \ No newline at end of file diff --git a/03-agentgateway-proxy/templates/agentgateway-proxy.yaml b/03-agentgateway-proxy/templates/agentgateway-proxy.yaml new file mode 100644 index 0000000..8712ee1 --- /dev/null +++ b/03-agentgateway-proxy/templates/agentgateway-proxy.yaml @@ -0,0 +1,14 @@ +apiVersion: gateway.networking.k8s.io/v1 +kind: Gateway +metadata: + name: agentgateway-proxy + namespace: agentgateway-system +spec: + gatewayClassName: agentgateway + listeners: + - protocol: HTTP + port: 80 + name: http + allowedRoutes: + namespaces: + from: All