From 7c90eea2cca7d1341ba7a91b79c1001066617ac5 Mon Sep 17 00:00:00 2001 From: Vaibhav Pathak Date: Thu, 12 Feb 2026 17:52:24 +0530 Subject: [PATCH] http route support added --- templates/backstage-rbac.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/templates/backstage-rbac.yaml b/templates/backstage-rbac.yaml index 3bd98a9..ff2dfc6 100644 --- a/templates/backstage-rbac.yaml +++ b/templates/backstage-rbac.yaml @@ -38,6 +38,16 @@ rules: - apiGroups: ["argoproj.io"] resources: ["workflows"] verbs: ["get", "list", "watch"] + + # Gateway API HTTPRoutes - for displaying service URLs + - apiGroups: ["gateway.networking.k8s.io"] + resources: ["httproutes"] + verbs: ["get", "list", "watch"] + + # Ingress - for displaying service URLs (legacy) + - apiGroups: ["networking.k8s.io"] + resources: ["ingresses"] + verbs: ["get", "list", "watch"] --- apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRoleBinding