generated from redhat-developer/new-project-template
-
Notifications
You must be signed in to change notification settings - Fork 57
RHIDP-4802 - Dynamic plugin: Document how users can add middleware functions to proxy backend #766
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
Merged
Merged
Changes from 14 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
0328f7f
RHIDP-4802 - Dynamic plugin: Document how users can add middleware fu…
Gerry-Forde b11c132
RHIDP-4566: document how to manage PVCs in RHDH operator (#702)
hmanwani-rh 938f673
chore: dynamic plugins are all now expressed as wrappers (RHIDP-5103)…
nickboldt 15a69a5
Merge branch 'main' into RHIDP-4802
Gerry-Forde 6ed82fa
RHIDP-4409: update metric monitoring instructions for OCP and AKS (#757)
JessicaJHee 79ca3c4
added missing article (#741)
pabel-rh e2f8c1a
chore: fix known issues search string (#774)
themr0c ce33b8e
RHIDP-4805: RHBK v24 support for RHDH 1.4 (#767)
hmanwani-rh 1c6c2c6
RHIDP-4572: Updating /metrics port (#735)
hmanwani-rh 8c6eb46
chore(installation): remove non-OLM installation doc; add link to OLM…
nickboldt bcbf1c9
Add supported keycloak version
jmagak 2d50ebb
Remove Audit log file rotation in RHDH
jmagak 79f5e60
RHIDP-4802 - Dynamic plugin: Document how users can add middleware f…
Gerry-Forde 76f66cc
Merge branch 'main' into RHIDP-4802
Gerry-Forde 02d893b
Merge branch 'main' into RHIDP-4802
Gerry-Forde 60ea98b
RHIDP-4802 - Dynamic plugin: Document how users can add middleware fu…
Gerry-Forde 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
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
101 changes: 101 additions & 0 deletions
101
modules/dynamic-plugins/con-overriding-core-backend-services.adoc
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,101 @@ | ||
| [id="overriding-core-backend-services_{context}"] | ||
| = Overriding Core Backend Service Configuration | ||
|
|
||
| The {product} ({product-very-short}) backend platform consists of a number of core services that are well encapsulated. The {product-very-short} backend installs these default core services statically during initialization. | ||
|
|
||
| You can configure these core services by customizing the backend source code and rebuilding your {product-short} application. Alternatively, you can customize a core service by installing it as a `BackendFeature` by using dynamic plugin functionality. | ||
|
|
||
| To use the dynamic plugin functionality to customize a core service in your RHDH application, you must configure the backend to avoid statically installing a given default core service. | ||
|
|
||
| For example, adding a middleware function to handle all incoming requests can be done by installing a custom `configure` function for the root `HTTP` router backend service which allows access to the underlying Express application. | ||
|
|
||
| .Example of a `BackendFeature` middleware function to handle incoming `HTTP` requests | ||
|
|
||
| [source,javascript] | ||
| ---- | ||
| // Create the BackendFeature | ||
| export const customRootHttpServerFactory: BackendFeature = | ||
| rootHttpRouterServiceFactory({ | ||
| configure: ({ app, routes, middleware, logger }) => { | ||
| logger.info( | ||
| 'Using custom root HttpRouterServiceFactory configure function', | ||
| ); | ||
| app.use(middleware.helmet()); | ||
| app.use(middleware.cors()); | ||
| app.use(middleware.compression()); | ||
| app.use(middleware.logging()); | ||
| // Add a the custom middleware function before all | ||
| // of the route handlers | ||
| app.use(addTestHeaderMiddleware({ logger })); | ||
| app.use(routes); | ||
| app.use(middleware.notFound()); | ||
| app.use(middleware.error()); | ||
| }, | ||
| }); | ||
|
|
||
| // Export the BackendFeature as the default entrypoint | ||
| export default customRootHttpServerFactory; | ||
| ---- | ||
|
|
||
| In the above example, as the `BackendFeature` overrides the default implementation of the HTTP router service, you must set the `ENABLE_CORE_ROOTHTTPROUTER_OVERRIDE` environment variable to `true` so that the {product-short} does not install the default implementation automatically. | ||
|
|
||
| == Overriding environment variables | ||
| To allow a dynamic plugin to load a core service override, you must start the {product-short} backend with the corresponding core service ID environment variable set to `true`. | ||
Gerry-Forde marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| .Environment variables and core service IDs | ||
Gerry-Forde marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| [cols="50%,50%", frame="all", options="header"] | ||
| |=== | ||
| |Variable | ||
| |Description | ||
|
|
||
| |`ENABLE_CORE_AUTH_OVERRIDE` | ||
| |Override the `core.auth` service | ||
|
|
||
| | `ENABLE_CORE_CACHE_OVERRIDE` | ||
| | Override the `core.cache` service | ||
|
|
||
| | `ENABLE_CORE_ROOTCONFIG_OVERRIDE` | ||
| | Override the `core.rootConfig` service | ||
|
|
||
| | `ENABLE_CORE_DATABASE_OVERRIDE` | ||
| | Override the `core.database` service | ||
|
|
||
| | `ENABLE_CORE_DISCOVERY_OVERRIDE` | ||
| | Override the `core.discovery` service | ||
|
|
||
| | `ENABLE_CORE_HTTPAUTH_OVERRIDE` | ||
| | Override the `core.httpAuth` service | ||
|
|
||
| | `ENABLE_CORE_HTTPROUTER_OVERRIDE` | ||
| | Override the `core.httpRouter` service | ||
|
|
||
| | `ENABLE_CORE_LIFECYCLE_OVERRIDE` | ||
| | Override the `core.lifecycle` service | ||
|
|
||
| | `ENABLE_CORE_LOGGER_OVERRIDE` | ||
| | Override the `core.logger` service | ||
|
|
||
| | `ENABLE_CORE_PERMISSIONS_OVERRIDE` | ||
| | Override the `core.permissions` service | ||
|
|
||
| | `ENABLE_CORE_ROOTHEALTH_OVERRIDE` | ||
| | Override the `core.rootHealth` service | ||
|
|
||
| | `ENABLE_CORE_ROOTHTTPROUTER_OVERRIDE` | ||
| | Override the `core.rootHttpRouter` service | ||
|
|
||
| | `ENABLE_CORE_ROOTLIFECYCLE_OVERRIDE` | ||
| | Override the `core.rootLifecycle` service | ||
|
|
||
| | `ENABLE_CORE_SCHEDULER_OVERRIDE` | ||
| | Override the `core.scheduler` service | ||
|
|
||
| | `ENABLE_CORE_USERINFO_OVERRIDE` | ||
| | Override the `core.userInfo` service | ||
|
|
||
| | `ENABLE_CORE_URLREADER_OVERRIDE` | ||
| | Override the `core.urlReader` service | ||
|
|
||
| | `ENABLE_EVENTS_SERVICE_OVERRIDE` | ||
| | Override the `events.service` service | ||
| |=== | ||
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.
Uh oh!
There was an error while loading. Please reload this page.