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

n8n-nodes-kubert

v0.1.2

Published

n8n community nodes for KubeRT — AI-Powered Kubernetes Scheduler. Manage clusters, workloads, pods, Helm charts, rightsizing, and more from n8n workflows.

Readme

n8n-nodes-kubert

n8n community nodes for KubeRT — the AI-Powered Kubernetes Scheduler.

Automate Kubernetes operations directly from n8n workflows. Deploy workloads, manage clusters, respond to anomalies, install Helm charts, and more.

Installation

From n8n UI

  1. Go to Settings > Community Nodes
  2. Search for n8n-nodes-kubert
  3. Click Install

From CLI

# Inside your n8n instance
npm install n8n-nodes-kubert

Via Environment Variable

N8N_COMMUNITY_PACKAGES=n8n-nodes-kubert

Nodes

KubeRT (Action Node)

Perform operations against your KubeRT-managed Kubernetes clusters.

| Resource | Operations | |----------|-----------| | Cluster | Get Overview, List Nodes, Get Node, Drain Node, Get Status | | Workload | Deploy, Delete, Get Details, Patch, Apply YAML | | Pod | List, Get Logs, Restart, Delete | | Namespace | List, Create | | Environment | List, Add, Connect, Delete | | Catalog | Search, Install, Uninstall, Upgrade, List Installed, Get Values | | Rightsizing | Get Recommendations, Apply, Revert, Reanalyze, List Applied | | Credential | List, Create, Delete, Test | | User | List, Create, Update, Delete, Get Audit Log | | Workflow | List, Create, Trigger, Get Runs, Delete | | AI | Chat, Investigate Anomaly, Get Anomalies, Dismiss |

KubeRT Trigger (Trigger Node)

Automatically start workflows when events occur in your Kubernetes cluster.

50 event types across 9 categories:

| Category | Events | |----------|--------| | Cluster | Connected, Disconnected, Provisioned, Destroyed, Scaled, Upgraded | | Workloads | Deployed, Scaled, Restarted, Deleted, Failed, Image Updated | | Pods | Crash Loop, OOM Killed, Pending, Evicted, Deleted | | Anomalies | Detected, Resolved, Investigated, Escalated | | Rightsizing | Recommended, Applied, Reverted | | Catalog | Installed, Upgraded, Uninstalled | | Security | Login, Login Failed, User Created, Role Changed, Policy Violated | | Infrastructure | Node Pressure, Node Not Ready, Disk Pressure, Certificate Expiring | | Cost | Threshold Exceeded, Savings Available |

Credential Setup

  1. In n8n, go to Credentials > New Credential
  2. Search for KubeRT API
  3. Enter:
    • Base URL: Your KubeRT gateway URL (e.g., http://kubert:8080)
    • Username: KubeRT login username
    • Password: KubeRT login password
  4. Click Test to verify the connection

Example Workflows

Auto-restart crashing pods

KubeRT Trigger (pod.crash_loop) → IF (restart_count > 5) → KubeRT (Pod > Restart)

Slack alert on anomaly detection

KubeRT Trigger (anomaly.detected) → Slack (Send Message)

Nightly rightsizing report

Schedule (daily) → KubeRT (Rightsizing > Get Recommendations) → Email (Send)

Auto-scale on high CPU

KubeRT Trigger (infra.node_pressure) → KubeRT (Cluster > Get Overview) → IF (cpu > 90%) → KubeRT (Workload > Deploy)

Install chart on new cluster

KubeRT Trigger (cluster.provisioned) → KubeRT (Catalog > Install) [monitoring stack]

Requirements

  • KubeRT instance running with the API gateway accessible
  • n8n v1.0.0 or later
  • A KubeRT user account with appropriate permissions

Development

# Clone the repo
git clone https://github.com/mchenetz/kubert.git
cd kubert/n8n-nodes-kubert

# Install dependencies
npm install

# Build
npm run build

# Link for local n8n development
npm link
cd /path/to/n8n
npm link n8n-nodes-kubert

License

MIT