-
Notifications
You must be signed in to change notification settings - Fork 27
Refactor API-Platform GW setup #768
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
AnoshanJ
wants to merge
24
commits into
wso2:main
Choose a base branch
from
AnoshanJ:feat/unify-gw
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
a37e636
Add api-platform gateway extension
AnoshanJ 1a3a335
Update ingress-gw backend and port of platform-resources extension
AnoshanJ ef86952
Update platform resources exxtension
AnoshanJ d9390b7
Update agent manager service config
AnoshanJ 8a4d574
Update trace-ingestion endpoint
AnoshanJ 5f6f808
Update installation scripts
AnoshanJ eda17f3
Update gateway bootstrap job
AnoshanJ 8426f7e
Update make-setup installation
AnoshanJ ed26e76
Update otel collector name and displayName
AnoshanJ 0fe391c
Add port-forward
AnoshanJ 9df7243
Add system label to gateway pods for ingress network policy
AnoshanJ b1b6cf5
Update Organization Gateway UI to handle regular GW
AnoshanJ 9a27436
Update quick-start installation
AnoshanJ 0a83540
Update api-platform extension github chart-name
AnoshanJ cbc027d
Remove amp-ai-gateway-extension
AnoshanJ 065efa6
Update api-platform gw references
AnoshanJ b7a13e1
Updaet port-forwarding for gateway
AnoshanJ 7ca8732
Update documentation for gateway changes
AnoshanJ 13df366
Update Makefile to clarify migration steps and service access instruc…
AnoshanJ 4ef8f13
Update restapi name for traces-api
AnoshanJ 688359f
Address review comments
AnoshanJ c105bb7
Update port-forwarding during make-setup
AnoshanJ 08cd4b1
Update review comments
AnoshanJ 673b67a
Enhance port-forwarding scripts to support additional flag
AnoshanJ File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
.../wso2-amp-ai-gateway-extension/Chart.yaml → ...api-platform-gateway-extension/Chart.yaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unbounded fetch at Line 73 can become a scalability bottleneck after removing type filtering.
Now that all gateway types are loaded, this view does client-side search + pagination on the full dataset. For orgs with many gateways, this increases payload size and render cost. Please move pagination (and ideally filtering) to the API query path (
limit/offsetsupported bylistGateways) instead of loading everything at once.🤖 Prompt for AI Agents