Welcome to RHDH Local, the simplest way to test your software catalogs, techdocs, plugins, and more!
RHDH local is the ideal proving ground for trying out the basic features of RHDH (like Software Catalogs or TechDocs) but, it's also great for testing dynamic plugins and their configuration settings. To use RHDH Local, all you really need is a basic knowledge of tools like Docker or Podman, a PC, and a web browser. You can run it on your laptop, desktop, or homelab server. Better still, when you're done working it's easy to remove.
RHDH Local is NOT a substitute for red Hat Developer Hub. Do not use RHDH Local as a production system. RHDH Local is designed to help individual developers test various RJDH features. It's not designed to scale to allow use by multiple people and it's not suitable for use by teams (there is no RBAC for example). There's also currently no support for RHDH Local. You use RHDH Local at your own risk. Contributions are welcome.
To use RHDH Local you'll need a few things:
- A PC based on an x86 64Bit (amd64) architecture
- Docker or Podman installed with adequate resources available
- An internet connection for downloading container images, plugins, etc.
- (Optional) The
gitcommand line client for cloning this repository (or you can download and extract the Zip from GitHub) - (Optional) A GitHub account if you want to integrate GitHub
- (Optional) The node
npxtool if you intend to use GitHub authentication
-
Clone this repository to a location on your PC
git clone https://github.com/kadel/rhdh-local.git
-
Move to the
rhdh-localfolder.cd rhdh-local -
Create your own local
.envfile by using a copy of theenv.sampleprovided.cp env.sample .env
In most cases, when you you don't need GitHub Auth or testing different releases you can leave it as it is and it should work.
-
(Optional) Update
configs/app-config.local.yaml. If you need fetching files form from GitHub you should configureintegrations.github. The recommended way is to use GitHub Apps. You can find hints on how to configure it in github-app-credentials.example.yaml or mode detailed instruction in Backstage documentation. -
Start RHDH Local. This repository should work with either
docker composeusing Docker Engine orpodman-composeusing Podman. When using Podman there are some exceptions. Check Known Issues when using Podman Compose for more info.podman-compose up -d
If you prefer
docker composeyou can just replacepodman-composewithdocker composedocker compose up -d
When you change app-config.local.yaml you can just restart rhdh to load RHDH with new configuration.
podman-compose stop rhdh && podman-compose start rhdhWhen you change dynamic-plugins.yaml you need to re-run install-dynamic-plugins container and than restart RHDH instance.
podman-compose run install-dynamic-plugins
podman-compose stop rhdh && podman-compose start rhdhDuring boot the install-dynamic-plugins container reads the contents of the configs/dynamic-plugins.yaml file and activates, configures, or downloads any plugins contained in that file. In addition, the local-plugins directory is mounted into the install-dynamic-plugins container on the path /opt/app-root/src/local-plugins. Any plugins in that location can also be activated and configured in the same way (without downloading).
You can use the local-plugins folder install dynamic plugins directly from your local machine using the following steps:
- Copy the dynamic plugin binary file into the
local-pluginsdirectory. - Make sure that the permissions are set to allow container to read files (quick and dirty solution is
chmod -R 777 local-plugins) - Configure your dynamic plugin in
dynamic-plugins.yaml. See commented out examples in that file for examples. - See Changing Your Configuration section for more information about how to change and load new configuration.
You can switch between RHDH and Janus-IDP by changing the container image name hald by the RHDH_IMAGE environment variable in your .env file.
To use nightly build of Janus-IDP, set the variable as follows:
RHDH_IMAGE=quay.io/janus-idp/backstage-showcase:nextTo use the official release of RHDH 1.3, set the variable as follows:
RHDH_IMAGE=quay.io/rhdh/rhdh-hub-rhel9:1.3To reset RHDH Local you can use the following command. this will clean up any attached volumes, but your configuration changes will remain.
podman-compose down --volumesTo reset everything in the cloned rhdh-local repository, including any configuration changes you've made try:
git reset --hardTo remove the RHDH containers completely from your system (after you have run a compose down):
docker system prune --volumes # For rhdh-local running on docker
podman system prune --volumes # For rhdh-local running on podmanWorks with podman-compose only with image that include this following fix redhat-developer/rhdh#1585
Older images doesn't work in combination with podman-compose.
This is due to https://issues.redhat.com/browse/RHIDP-3939. RHDH images currently populate dynamic-plugins-root directory with all plugins that are packaged inside the image.
Before podman mounts volume over dynamic-plugins-root directory it copies all existing files into the volume. When the plugins are installed using install-dynamic-plugins.sh script it create duplicate installations of some plugins, this situation than prevents Backstage to start.
This also doesn't work with podman compose when using docker-compose as external compose provider on MacOs
It fails with
install-dynamic-plugins-1 | Traceback (most recent call last):
install-dynamic-plugins-1 | File "/opt/app-root/src/install-dynamic-plugins.py", line 429, in <module>
install-dynamic-plugins-1 | main()
install-dynamic-plugins-1 | File "/opt/app-root/src/install-dynamic-plugins.py", line 206, in main
install-dynamic-plugins-1 | with open(dynamicPluginsFile, 'r') as file:
install-dynamic-plugins-1 | PermissionError: [Errno 13] Permission denied: 'dynamic-plugins.yaml'
It looks like docker-compose when used with podman doesn't correctly propagete Z SElinux label.
By default in-memory db is used. If you want to use PostgreSQL with RHDH, here are the steps:
-
Uncomment the
dbservice block in compose.yaml filedb: image: "registry.access.redhat.com/rhel8/postgresql-16:latest" volumes: - "/var/lib/pgsql/data" env_file: - path: "./.env" required: true environment: - POSTGRESQL_ADMIN_PASSWORD=${POSTGRES_PASSWORD} healthcheck: test: ["CMD", "pg_isready", "-U", "postgres"] interval: 5s timeout: 5s retries: 5
-
Uncomment the
dbsection in thedepends_onsection ofrhdhservice in compose.yamldepends_on: install-dynamic-plugins: condition: service_completed_successfully db: condition: service_healthy
-
Comment out the SQLite in-memory configuration in
app-config.local.yaml# database: # client: better-sqlite3 # connection: ':memory:'