npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@thecodingsheikh/backstage-plugin-catalog-backend-module-kubernetes

v0.1.2

Published

Backstage catalog backend module that ingests Kubernetes workloads and CRDs as entities. Config lives under catalog.providers.kubernetes.

Downloads

327

Readme

@thecodingsheikh/backstage-plugin-catalog-backend-module-kubernetes

Catalog backend module that ingests Kubernetes workloads and CRDs as Backstage entities. A slim, catalog-provider-focused rewrite of @terasky/backstage-plugin-kubernetes-ingestor — no Crossplane, no KRO, no scaffolder templates.

Install

yarn --cwd packages/backend add @thecodingsheikh/backstage-plugin-catalog-backend-module-kubernetes

What it emits

Per ingested workload:

  • 1 Component (or Resource) — the workload itself.
  • 1 System — one per namespace/cluster, shared across workloads in it. Opt out with createSystemFromNamespace: false.
  • 1 API (optional) — if the workload has a <prefix>/provides-api-* annotation.

Per selected CRD (optional): 1 API entity per version.

Each sync is a type: 'full' mutation, so deleting a K8s resource removes its entity on the next tick automatically.

Setup

  1. Configure clusters in the core kubernetes plugin (kubernetes.clusterLocatorMethods).
  2. Wire the module:
    // packages/backend/src/index.ts
    backend.add(import('@thecodingsheikh/backstage-plugin-catalog-backend-module-kubernetes'));
  3. Add at least one provider under catalog.providers.kubernetes.<id>.

Full config reference

catalog:
  providers:
    kubernetes:
      # Arbitrary id; becomes part of the provider's log name and locationKey.
      main:
        # Annotation prefix read from K8s resources.
        annotationPrefix: k8s.backstage.io              # default: k8s.backstage.io

        # Fallback owner when neither the workload nor the namespace supplies one.
        defaultOwner: kubernetes-auto-ingested          # default: kubernetes-auto-ingested

        # If a workload has no <prefix>/owner, look up the same annotation on
        # its Namespace object. Each unique namespace is fetched once per run.
        inheritOwnerFromNamespace: false                # default: false

        # Limit which clusters this provider ingests from. Names must match
        # those registered in kubernetes.clusterLocatorMethods.
        # Omit to use every discovered cluster.
        allowedClusterNames: [prod-east, prod-west]

        # Ceiling on in-flight HTTP calls to the kubernetes proxy, per sync
        # phase (list + translate). Lower if your backend struggles with big
        # clusters, raise to speed up huge fleets.
        maxConcurrency: 20                              # default: 20

        # Copies argocd.argoproj.io/tracking-id → argocd/app-name so the
        # ArgoCD card on the entity page works.
        argoIntegration: false                          # default: false

        # Auto-create a System per namespace/cluster. False = no System is
        # emitted and spec.system is only set when <prefix>/system is present.
        createSystemFromNamespace: true                 # default: true

        # Rewrites cluster names stamped on entities. Only needed if you
        # register the same physical cluster twice (e.g. sa-prod + oidc-prod).
        clusterNameMapping:
          mode: prefix-replacement                      # or 'explicit'
          sourcePrefix: sa-                             # prefix-replacement only
          targetPrefix: oidc-
          mappings:                                     # explicit only
            sa-prod-01: oidc-prod-01

        # How entity names are derived. Change these when workloads with the
        # same name exist in multiple clusters or namespaces.
        mappings:
          namespaceModel: default          # default | cluster | namespace
          nameModel: name                  # name | name-kind | name-cluster | name-namespace | uid
          titleModel: name                 # name | name-cluster | name-namespace
          systemModel: namespace           # namespace | cluster | cluster-namespace
          referencesNamespaceModel: default # default | same

        components:
          enabled: true                                 # default: true
          # Emit as Resource entities instead of Components.
          ingestAsResources: false                      # default: false
          # When true, only ingest workloads carrying <prefix>/add-to-catalog.
          onlyIngestAnnotatedResources: false           # default: false
          excludedNamespaces: [kube-system, kube-public]
          # Turn off the built-in Deployment/StatefulSet/DaemonSet/CronJob list.
          disableDefaultWorkloadTypes: false            # default: false
          # Extra GVKs to ingest as Components. Independent of
          # kubernetes.customResources (that one is for the frontend K8s tab).
          customWorkloadTypes:
            - group: argoproj.io
              apiVersion: v1alpha1
              plural: rollouts
              defaultType: service                      # fallback for spec.type
              ingestAsResources: false                  # per-type override

        # Optional: emit one API entity per CRD version.
        crds:
          enabled: false                                # default: false
          # true → spec.type: crd with raw CRD YAML (needs a CRD-aware UI).
          # false → spec.type: openapi with a generated spec (renders in the
          # default API card but paths are approximate).
          ingestAPIsAsCRDs: true                        # default: true
          # spec.system assigned to every CRD-derived API entity.
          system: crds                                  # default: crds
          # Explicit allowlist by CRD metadata.name; takes precedence over selector.
          crds: [widgets.example.io]
          # Or filter by label (ignored when `crds` is set).
          crdLabelSelector:
            key: example.io/catalog
            value: "true"

        # Standard Backstage scheduler config.
        schedule:
          frequency: { minutes: 10 }
          timeout: { minutes: 5 }

Workload annotations

All keys use the configured annotationPrefix.

| Annotation | Effect | |---|---| | <prefix>/add-to-catalog | Required to ingest when onlyIngestAnnotatedResources is true. | | <prefix>/exclude-from-catalog | Always skip this workload. | | <prefix>/name, /title, /description | Override generated values. | | <prefix>/owner | Sets spec.owner (full entity ref or bare name). | | <prefix>/owners | Sets spec.owners for the multi-owner processor. Compact syntax: comma/newline-separated, each entry kind:name[:role] or kind:namespace/name[:role]. A trailing :role is optional. JSON array form also accepted for explicit { name, role }. Inherited from the Namespace when inheritOwnerFromNamespace is on. | | <prefix>/system | Sets spec.system. | | <prefix>/system-type, /domain | Applied to the generated System entity. | | <prefix>/component-type, /lifecycle | Override spec.type and spec.lifecycle. | | <prefix>/backstage-namespace | Override the Backstage namespace for both Component and System. | | <prefix>/backstage-tags | Extra tags as k1:v1,k2:v2. | | <prefix>/component-annotations | Extra annotations as k1=v1,k2=v2. | | <prefix>/links | JSON array of Backstage links. | | <prefix>/dependsOn, /providesApis, /consumesApis, /subcomponent-of | Entity-ref relationships. | | <prefix>/kubernetes-label-selector | Override the auto-derived label selector. | | <prefix>/source-code-repo-url, /source-branch, /techdocs-path | Wire up backstage.io/source-location + backstage.io/techdocs-ref. | | <prefix>/provides-api-from-url | Fetch OpenAPI/YAML from this URL, emit a linked API entity. | | <prefix>/provides-api-from-def | URL stored via Backstage's $text reference (no fetch). | | <prefix>/provides-api-from-resource-ref | JSON pointing at a K8s resource whose status field yields the URL to fetch. | | argocd.argoproj.io/tracking-id | Source for argocd/app-name when argoIntegration is on. |

Differences from kubernetes-ingestor

| Feature | kubernetes-ingestor | This module | |---|---|---| | Config root | kubernetesIngestor.* | catalog.providers.kubernetes.<id>.* | | Multiple instances | no | yes | | Crossplane claims/XRs, XRD/CRD templates | yes | removed | | KRO instances, RGD templates | yes | removed | | Scaffolder template generation | yes | removed | | Signals-based delta updates | yes | removed (full sync handles deletion) | | Concurrency cap | no | maxConcurrency, default 20 | | Standard + custom workload ingestion | yes | kept | | CRD → API entity | yes | kept | | ArgoCD integration | yes | kept | | Cluster-name mapping, owner inheritance, naming models | yes | kept |