-
Notifications
You must be signed in to change notification settings - Fork 53
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
Add HTTP/XFCCAuth endpoint in the scheduler component #3437
Merged
Conversation
This file contains 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
3c81691
to
56ebc8d
Compare
7013046
to
48fd6ce
Compare
fb94975
to
2159f78
Compare
Adds xfcc cf endpoint support to scaling engine Remove debug println WIP wip Fix warning Initial implementation of CF ServeR Add .trunk to .gitignore for Devbox configuration. Add .trunk to .gitignore for Devbox configuration.
- Rename cfServer to cf-server in configuration properties - Add launch.json for VSCode Java debugging setup - Remove destroyMethod annotation from CFServerConfig bean - Update application.yml to reflect new property names for cf-server
asalan316
reviewed
Feb 17, 2025
asalan316
reviewed
Feb 17, 2025
asalan316
reviewed
Feb 17, 2025
asalan316
reviewed
Feb 17, 2025
asalan316
reviewed
Feb 17, 2025
03fb868
to
117664c
Compare
- bubble up the errors to consumers of the cf config util.
classes must contain no more than '1' consecutive capital letters.
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
…gengine specs - Deleted autoscaler/configutil/* from eventgenerator, operator, and scalingengine - Removed autoscaler/vendor/github.com/cloud-gov/go-cfenv/* from eventgenerator and operator - Eliminated autoscaler/vendor/github.com/mitchellh/mapstructure/* from eventgenerator and scalingengine
|
asalan316
approved these changes
Feb 20, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
allow-acceptance-tests
This label needs to be added to enable the acceptance tests to run.
enhancement
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.
Overview
This pull request introduces an HTTP endpoint in the scheduler component.
Authentication for this endpoint is performed using XFCC headers. A certificate with a valid Cloud Foundry (CF) space and org GUID in the Organizational field must be present. These attributes are compared against the valid space and org GUIDs configured in the scheduler component.
To populate the XFCC headers and enable communication between the scheduler and API in integration tests, a GoRouter Proxy app was developed for testing purposes.