This documentation is for a release that is no longer maintained
See documentation for the latest supported version.Chapter 3. Breaking changes
This section lists breaking changes with Red Hat Developer Hub 1.1:
3.1. Configuration change in the GitHub Organization catalog provider
The GitHub Organization catalog module for the new backend system switched to a new GithubMultiOrgEntityProvider
provider, which allows ingesting data from multiple GitHub organizations. This new provider brings in changes to the default plugin configuration settings. You must upgrade the @backstage/plugin-catalog-backend-module-github-org
plugin and reconfigure it in the following manner:
kind: ConfigMap apiVersion: v1 metadata: name: app-config-rhdh data: app-config-rhdh.yaml: | ... catalog: providers: githubOrg: id: production githubUrl: "${GITHUB_URL}" orgs: [ "${GITHUB_ORG}" ] ...
kind: ConfigMap
apiVersion: v1
metadata:
name: app-config-rhdh
data:
app-config-rhdh.yaml: |
...
catalog:
providers:
githubOrg:
id: production
githubUrl: "${GITHUB_URL}"
orgs: [ "${GITHUB_ORG}" ]
...
- 1
- Replace
${GITHUB_ORG}
with the GitHub organization you want to ingest users from.
For more information, see the Enabling GitHub organization member discovery in Red Hat Developer Hub section in the Getting started guide.