이 콘텐츠는 선택한 언어로 제공되지 않습니다.
Chapter 4. Technology Preview
This section lists Technology Preview features in Red Hat Developer Hub 1.5.
Technology Preview features provide early access to upcoming product innovations, enabling you to test functionality and provide feedback during the development process. However, these features are not fully supported under Red Hat Subscription Level Agreements, may not be functionally complete, and are not intended for production use. As Red Hat considers making future iterations of Technology Preview features generally available, we will attempt to resolve any issues that customers experience when using these features. See: Technology Preview support scope.
4.1. Extensions for Red Hat and community plugins 링크 복사링크가 클립보드에 복사되었습니다!
The new Extensions feature enables you to browse available Red Hat and community plugins. The initial version displays all plugins and includes filtering options. Future updates will introduce additional features, such as installation directly from the front-end.
For more information about Extensions, see Extensions in Red Hat Developer Hub.
Additional resources
4.2. Loading authentication providers from dynamic plugins 링크 복사링크가 클립보드에 복사되었습니다!
In Red Hat Developer Hub 1.5, loading authentication providers or modules from dynamic plugins is available as a Technology Preview feature, enabling greater flexibility and customization. The key improvements include:
Environment variable control:
-
A new
ENABLE_AUTH_PROVIDER_MODULE_OVERRIDEenvironment variable determines whether the backend installs the default authentication provider module. - When the new environment variable is enabled, dynamic plugins can be used to supply custom authentication providers.
-
A new
Custom sign-in page support:
A new
signInPageconfiguration allows front-end dynamic plugins to provide a customSignInPagecomponent.Example configuration
dynamicPlugins: frontend: my-plugin-package: signInPage: importName: CustomSignInPage-
The exported
CustomSignInPagewill be mapped tocomponents.SignInPageduring front-end initialization.
Authentication provider settings:
A new
providerSettingsconfiguration field allows front-end dynamic plugins to define authentication provider settings for display in the Authentication Providers tab on the Settings page.Example configuration
dynamicPlugins: frontend: my-plugin-package: providerSettings: - title: Github Two description: Sign in with GitHub Org Two provider: core.auth.github-twoEach
providerSettingsentry creates a corresponding row in the Authentication Providers tab. The provider field must match the string used increateApiRefwhen defining the API reference:Example configuration
export const ghTwoAuthApiRef: ApiRef< OAuthApi & ProfileInfoApi & BackstageIdentityApi & SessionApi > = createApiRef({ id: 'core.auth.github-two', // <--- this string })
For more information, see Authentication in Red Hat Developer Hub.