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

@freelensapp/fluxcd-extension

v5.3.1

Published

Freelens extension for FluxCD

Readme

@freelensapp/fluxcd-extension

Home GitHub Release Integration tests npm

Overview

This extension adds support for FluxCD to Freelens. FluxCD is a set of continuous and progressive delivery solutions for Kubernetes that keep the cluster state in sync with sources such as Git repositories, OCI artifacts, and Helm charts. FluxCD v2.0.0 or higher is supported.

The extension provides a dashboard, cluster pages, list views, and detail panels for the FluxCD custom resources across the fluxcd.controlplane.io, source.toolkit.fluxcd.io, kustomize.toolkit.fluxcd.io, helm.toolkit.fluxcd.io, image.toolkit.fluxcd.io, and notification.toolkit.fluxcd.io API groups. Each resource is accessible from the Freelens sidebar, with status conditions, spec fields, and related objects displayed in the detail view. Resource menus allow reconciling, suspending, and resuming FluxCD resources directly from the UI.

screenshot

Requirements

  • Kubernetes >= 1.24
  • Freelens >= 1.6.2
  • Flux >= v2.0.0, <= 2.8.x
  • flux-operator >= v0.6.0
  • kustomize-controller >= v0.1.0
  • helm-controller >= v0.1.0
  • image-automation-controller >= v0.14.0
  • image-reflector-controller >= v0.11.0
  • notification-controller >= v0.1.0
  • source-controller >= v0.1.0

Supported APIs

fluxcd.controlplane.io

Resources managed by the flux-operator.

| API Version | Kind | Short Name | Scope | Description | | --- | --- | --- | --- | --- | | v1 | FluxInstance | | Namespaced | Manages the installation and configuration of a Flux instance | | v1 | FluxReport | | Namespaced | Reports the status and health of a Flux installation | | v1 | ResourceSet | rset | Namespaced | Group of Kubernetes resources managed as a single unit | | v1 | ResourceSetInputProvider | rsip | Namespaced | Provides inputs for ResourceSet templating |

source.toolkit.fluxcd.io

Resources managed by the source-controller.

| API Version | Kind | Short Name | Scope | Description | | --- | --- | --- | --- | --- | | v1beta1, v1beta2, v1 | GitRepository | gitrepo | Namespaced | Defines a Git repository as a source | | v1beta2, v1 | OCIRepository | ocirepo | Namespaced | Defines an OCI artifact repository as a source | | v1beta1, v1beta2, v1 | HelmRepository | helmrepo | Namespaced | Defines a Helm chart repository as a source | | v1beta1, v1beta2, v1 | HelmChart | hc | Namespaced | Defines a Helm chart produced from a source | | v1beta1, v1beta2, v1 | Bucket | | Namespaced | Defines an S3-compatible bucket as a source |

kustomize.toolkit.fluxcd.io

Resources managed by the kustomize-controller.

| API Version | Kind | Short Name | Scope | Description | | --- | --- | --- | --- | --- | | v1beta1, v1beta2, v1 | Kustomization | ks | Namespaced | Builds and applies Kustomize overlays from a source |

helm.toolkit.fluxcd.io

Resources managed by the helm-controller.

| API Version | Kind | Short Name | Scope | Description | | --- | --- | --- | --- | --- | | v2beta1, v2beta2, v2 | HelmRelease | hr | Namespaced | Manages a Helm release built from a chart source |

image.toolkit.fluxcd.io

Resources managed by the image-reflector-controller and image-automation-controller.

| API Version | Kind | Short Name | Scope | Description | | --- | --- | --- | --- | --- | | v1beta1, v1beta2, v1 | ImageRepository | | Namespaced | Scans a container image repository for tags | | v1beta1, v1beta2, v1 | ImagePolicy | | Namespaced | Selects the latest image based on a policy | | v1beta1, v1beta2, v1 | ImageUpdateAutomation | | Namespaced | Automates image updates committed back to Git |

notification.toolkit.fluxcd.io

Resources managed by the notification-controller.

| API Version | Kind | Short Name | Scope | Description | | --- | --- | --- | --- | --- | | v1beta1, v1beta2, v1beta3 | Provider | | Namespaced | Represents a notification or event provider | | v1beta1, v1beta2, v1beta3 | Alert | | Namespaced | Configures events dispatched to a Provider | | v1beta1, v1beta2, v1beta3, v1 | Receiver | | Namespaced | Defines a webhook receiver to trigger reconciliation |

Install

To install, open Freelens and go to Extensions (ctrl+shift+E or cmd+shift+E), then search for and install @freelensapp/fluxcd-extension.

Alternatively, open the following URL in the browser to install directly:

freelens://app/extensions/install/%40freelensapp%2Ffluxcd-extension

Migrating from @freelensapp/extension-fluxcd

The package was renamed from @freelensapp/extension-fluxcd to @freelensapp/fluxcd-extension starting with v4.0.0.

If you have the old package installed, you will not receive updates and may encounter issues with newer Flux versions (e.g., Flux 2.7+ which removed v1beta1 APIs).

To migrate:

  1. Open Freelens Extensions (ctrl+shift+E or cmd+shift+E)
  2. Uninstall @freelensapp/extension-fluxcd (the old package)
  3. Install @freelensapp/fluxcd-extension (the new package)

Build from the source

You can build the extension from this repository.

Prerequisites

Use NVM, mise-en-place, or windows-nvm to install the required Node.js version.

From the root of this repository:

nvm install
# or
mise install
# or
winget install CoreyButler.NVMforWindows
nvm install 24.15.0
nvm use 24.15.0

Install pnpm:

corepack install
# or
curl -fsSL https://get.pnpm.io/install.sh | sh -
# or
winget install pnpm.pnpm

Build extension

pnpm i
pnpm build
pnpm pack

One script to build and pack the extension for testing:

pnpm pack:dev

Install built extension

The tarball will be placed in the current directory. In Freelens, navigate to the Extensions page and provide the path to the tarball, or drag and drop the .tgz file into the Freelens window.

Check code statically

pnpm lint:check

or

pnpm trunk:check

and

pnpm build
pnpm knip:check

Testing the extension with unpublished Freelens

In the Freelens working repository:

rm -f *.tgz
pnpm i
pnpm build
pnpm pack -r

Then in the extension repository:

echo "overrides:" >> pnpm-workspace.yaml
for i in ../freelens/*.tgz; do
  name=$(tar zxOf $i package/package.json | yq -r .name)
  echo "  \"$name\": $i" >> pnpm-workspace.yaml
done

pnpm clean:node_modules
pnpm build

License

Copyright (c) 2025-2026 Freelens Authors.

MIT License

Based on: