Skip to content

Commit

Permalink
put custom routes before admin
Browse files Browse the repository at this point in the history
  • Loading branch information
KSmigielski committed Nov 15, 2024
1 parent 38583fe commit fc51904
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -236,8 +236,8 @@ class EnvoyIngressRoutesFactory(
.setName("secured_local_service")
.addDomains("*")
.addAllVirtualClusters(virtualClusters)
.addAllRoutes(adminRoutesFactory.generateAdminRoutes())
.addAllRoutes(customRoutesFactory.generateCustomRoutes())
.addAllRoutes(adminRoutesFactory.generateAdminRoutes())
.addAllRoutes(generateSecuredIngressRoutes(proxySettings, group))
.also {
if (properties.localService.retryPolicy.default.enabled) {
Expand Down

0 comments on commit fc51904

Please sign in to comment.