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 RHDH 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
git
command 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
npx
tool if you intend to use GitHub authentication - (Optional) A Red Hat account if you want to use PostgreSQL database
-
Clone this repository to a location on your PC
git clone https://github.com/redhat-developer/rhdh-local.git
-
Move to the
rhdh-local
folder.cd rhdh-local
-
Create your own local
.env
file by using a copy of theenv.sample
provided.cp env.sample .env
In most cases, when 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 compose
using Docker Engine orpodman-compose
using 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 compose
you can just replacepodman-compose
withdocker compose
docker compose up -d
When you change app-config.local.yaml
you can restart rhdh
to load RHDH with new configuration.
podman-compose stop rhdh && podman-compose start rhdh
When 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 rhdh
During 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-plugins
directory. - 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 hold 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:next
To use the official release of RHDH 1.3, set the variable as follows:
RHDH_IMAGE=quay.io/rhdh/rhdh-hub-rhel9:1.3
If you want to test how RHDH would behave if deployed in a corporate proxy environment,
you can run podman-compose
or docker-compose
by merging both the compose.yaml
and compose-with-corporate-proxy.yaml
files.
Example with podman-compose
(note that the order of the YAML files is important):
podman-compose \
-f compose.yaml \
-f compose-with-corporate-proxy.yaml \
up -d
The compose-with-corporate-proxy.yaml
file includes a specific Squid-based proxy container as well as an isolated network, such that:
- only the proxy container has access to the outside
- all containers part of the internal network need to communicate through the proxy container to reach the outside. This can be done with the
HTTP(S)_PROXY
andNO_PROXY
environment variables.
To 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 --volumes
To reset everything in the cloned rhdh-local repository, including any configuration changes you've made try:
git reset --hard
To 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 podman
Works with podman-compose
only with image that include this following fix janus-idp/backstage-showcase#1585
Older images don'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 propagate Z
SElinux label.
By default, in-memory db is used. If you want to use PostgreSQL with RHDH, here are the steps:
NOTE: You must have Red Hat Login to use
postgresql
image.
-
Login to container registry with Red Hat Login credentials to use
postgresql
imagepodman login registry.redhat.io
If you prefer
docker
you can just replacepodman
withdocker
docker login registry.redhat.io
-
Uncomment the
db
service block in compose.yaml filedb: image: "registry.redhat.io/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
db
section in thedepends_on
section ofrhdh
service 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:'