Skip to content

Commit

Permalink
fix: change pathprefix to dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
daniejoh committed Nov 29, 2024
1 parent be5cdfd commit 1bc47a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deployment/kubernetes/routing.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ local hostMatch = std.extVar('hostMatch');
entryPoints: ['websecure'],
routes: [{
kind: 'Rule',
match: 'Host(`' + hostMatch + '`) && !PathPrefix(`/configuration`)',
match: 'Host(`' + hostMatch + '`) && !PathPrefix(`/dashboard`)',
services: [{
kind: 'Service',
name: 'developer-portal',
Expand All @@ -20,7 +20,7 @@ local hostMatch = std.extVar('hostMatch');
},
{
kind: 'Rule',
match: 'Host(`' + hostMatch + '`) && PathPrefix(`/configuration`)',
match: 'Host(`' + hostMatch + '`) && PathPrefix(`/dashboard`)',
services: [{
kind: 'Service',
name: 'developer-portal',
Expand Down

0 comments on commit 1bc47a7

Please sign in to comment.