Harbor
🔐 Setup Required
The harbor registry module allows monitoring images from your self-hosted CNCF Harbor registry instances.
⚙️ Configuration Variables
WUD_REGISTRY_HARBOR_{registry_name}_URL
Requiredurl
Harbor instance URL (e.g. https://harbor.mycompany.org)
WUD_REGISTRY_HARBOR_{registry_name}_LOGIN
Optionalstring
Harbor username or Robot Account name (e.g. robot$wud)
WUD_REGISTRY_HARBOR_{registry_name}_PASSWORD
Optionalstring
Harbor password or Robot Account secret token
🚀 Examples
Authenticate with Harbor Robot Account
- Docker Compose
- Docker
services:
whatsupdocker:
image: getwud/wud
environment:
- WUD_REGISTRY_HARBOR_PROD_URL=https://harbor.mycompany.org
- WUD_REGISTRY_HARBOR_PROD_LOGIN=robot$wud
- WUD_REGISTRY_HARBOR_PROD_PASSWORD=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
docker run \
-e WUD_REGISTRY_HARBOR_PROD_URL="https://harbor.mycompany.org" \
-e WUD_REGISTRY_HARBOR_PROD_LOGIN="robot$wud" \
-e WUD_REGISTRY_HARBOR_PROD_PASSWORD="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" \
getwud/wud