{"id":28348786,"url":"https://github.com/digitalist-open-cloud/backstage-plugin-harbor-backend","last_synced_at":"2026-03-17T21:04:49.053Z","repository":{"id":249185801,"uuid":"830696522","full_name":"Digitalist-Open-Cloud/Backstage-Plugin-Harbor-Backend","owner":"Digitalist-Open-Cloud","description":"Backstage plugin for Harbor integration","archived":false,"fork":false,"pushed_at":"2025-09-04T14:21:33.000Z","size":1982,"stargazers_count":5,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-04T16:24:23.918Z","etag":null,"topics":["backstage","backstage-plugin"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"container-registry/backstage-plugin-harbor-backend","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Digitalist-Open-Cloud.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-07-18T19:44:31.000Z","updated_at":"2025-09-04T14:21:37.000Z","dependencies_parsed_at":null,"dependency_job_id":"c8299f8a-321c-4126-8159-8c3858950d8c","html_url":"https://github.com/Digitalist-Open-Cloud/Backstage-Plugin-Harbor-Backend","commit_stats":null,"previous_names":["digitalist-open-cloud/backstage-plugin-harbor-backend"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/Digitalist-Open-Cloud/Backstage-Plugin-Harbor-Backend","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Digitalist-Open-Cloud%2FBackstage-Plugin-Harbor-Backend","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Digitalist-Open-Cloud%2FBackstage-Plugin-Harbor-Backend/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Digitalist-Open-Cloud%2FBackstage-Plugin-Harbor-Backend/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Digitalist-Open-Cloud%2FBackstage-Plugin-Harbor-Backend/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Digitalist-Open-Cloud","download_url":"https://codeload.github.com/Digitalist-Open-Cloud/Backstage-Plugin-Harbor-Backend/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Digitalist-Open-Cloud%2FBackstage-Plugin-Harbor-Backend/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30631436,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-17T17:32:55.572Z","status":"ssl_error","status_checked_at":"2026-03-17T17:32:38.732Z","response_time":56,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["backstage","backstage-plugin"],"created_at":"2025-05-27T19:10:37.577Z","updated_at":"2026-03-17T21:04:49.030Z","avatar_url":"https://github.com/Digitalist-Open-Cloud.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Backstage Harbor Backend plugin\n\nThis plugin will show information about your docker images within Harbor.\n\nThis is a fork, and no promises for backwards compatibility. But have been tested on Backstage 1.29.x (version 0.4.2 of this plugin) and 1.37.x (0.6.0).\n\nFor the original code, please see the [GitHub repo](https://github.com/container-registry/backstage-plugin-harbor-backend)\n\n## Getting started\n\nFirst [install frontend](https://github.com/Digitalist-Open-Cloud/backstage-plugin-harbor)\n\n### Enabling backend\n\n### Backend\n\n```bash\nyarn --cwd packages/backend add @digitalist-open-cloud/backstage-plugin-harbor-backend\n```\n\nAdd to `packages/backend/src/index.ts`:\n\n```ts\nbackend.add(import('@digitalist-open-cloud/backstage-plugin-harbor-backend'))\n```\n\nNow, jump to configuration step.\n\n## Configuration\n\nThe plugin requires configuration in the Backstage app-config.yaml to connect to Harbor API.\n\n```yaml\nharbor:\n  # This is the traditional way of configuring the Harbor plugin.\n  baseUrl: https://harbor.yourdomain.com\n  username: ${HARBOR_USERNAME}\n  password: ${HARBOR_PASSWORD}\n\n  # This is the way to go if you need to connect to multiple Harbor instances. You can also combine those approaches.\n  instances:\n    - host: harbor2.yourdomain.com\n      baseUrl: https://harbor2.yourdomain.com\n      username: ${HARBOR_USERNAME}\n      password: ${HARBOR_PASSWORD}\n```\n\nAdding annotations and values to your component file.\n\n```yaml\napiVersion: backstage.io/v1alpha1\nkind: System\nmetadata:\n  name: sample-system\n  description: \"A sample system\"\n  annotations:\n    # This will use harbor.baseUrl\n    goharbor.io/repository-slug: project/repository\n    # OR\n    # This will use harbor.instances[].baseUrl based on the matching host\n    goharbor.io/repository-slug: harbor.yourdomain.com/project/repository\n    # OR\n    # This will fetch the first image from harbor.baseUrl and the second image from harbor.instances[].baseUrl\n    goharbor.io/repository-slug: project/repository, harbor.yourdomain.com/project/repository\n```\n\n## Contributing\n\nPlease contribute back to the [original repo](https://github.com/container-registry/), and you are free to use any code from this repo to contribute back to the original repo without giving us credit.\n\n## History\n\nThis Backstage plugin was initially created by [BESTSELLER](https://github.com/BESTSELLER) and transferred to [Container Registry](https://github.com/container-registry/). This fork was started because of an acute need, and to keep code up to date with Backstage.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdigitalist-open-cloud%2Fbackstage-plugin-harbor-backend","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdigitalist-open-cloud%2Fbackstage-plugin-harbor-backend","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdigitalist-open-cloud%2Fbackstage-plugin-harbor-backend/lists"}