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

@hulumi/k8s-baseline

v1.5.0

Published

Hardened Pulumi K8s / EKS / Istio / RDS / Secrets-Manager baseline components — EksClusterFoundation, HardenedHelmRelease, EksSubnetTagger, IstioFoundation, AlbMeshedHttpEntrypoint, KubernetesSecretFromAwsSecretsManager, RdsCredentialSecret, GitHubAppCred

Readme

@hulumi/k8s-baseline

Hardened-by-default Pulumi component resources for Kubernetes / EKS / Istio / RDS / Secrets-Manager. Drop-in replacements for raw Helm releases, EKS subnet tagging, Istio installation, and ALB-meshed entrypoints with PSA-baseline-clean defaults wired up correctly out of the box.

Part of the Hulumi toolkit. Apache-2.0. SLSA Build L3 attestation on every published tarball.

Install

pnpm add @hulumi/k8s-baseline @pulumi/kubernetes @pulumi/aws @pulumi/pulumi

@hulumi/[email protected] accepts any caret-compatible Pulumi SDK (@pulumi/kubernetes 4.x, @pulumi/aws 7.x, @pulumi/pulumi 3.x). The versions Hulumi is tested against are listed in this package's peerDependencies — that's the floor, not a ceiling.

Components

| Component | Purpose | | --------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | EksClusterFoundation | Create/adopt EKS cluster foundation with private/restricted endpoint posture, audit logging, Pod Identity association hooks, and IMDSv2 managed node launch templates | | HardenedHelmRelease | Helm release with exact chart-version pinning (no latest, no semver ranges), enforced https:///oci:// repository scheme, PSA-baseline labels, default release-name stability | | MetricsServer | Kubernetes Metrics API install for HPA telemetry with secure-by-default APIService TLS | | EksSubnetTagger | Auto-tag EKS-bound subnets with kubernetes.io/role/{,internal-}elb | | EksAdminAccessPath | Auditable EKS operator access path for private or restricted-public control-plane hardening | | IstioFoundation | Bundled hardened Istio install (istiod + istio-cni + ingressgateway, PSA-baseline-clean) | | AlbMeshedHttpEntrypoint | ALB Ingress + Istio Gateway + VirtualService + AuthorizationPolicy for one workload | | KubernetesSecretFromAwsSecretsManager | K8s Secret from an AWS Secrets Manager value, fail-closed on JSON-shape violations | | RdsCredentialSecret | Extract RDS auto-managed master credential into a K8s Secret with fail-closed semantics | | GitHubAppCredential | Secrets Manager container + JWT-mint helper bundle for GitHub App credential rotation |

Quick-start — IstioFoundation

import { IstioFoundation } from "@hulumi/k8s-baseline";

const istio = new IstioFoundation("istio", {
  k8sProvider: cluster.provider,
  meshId: "my-mesh",
  network: "primary",
});

Quick-start — KubernetesSecretFromAwsSecretsManager

import { KubernetesSecretFromAwsSecretsManager } from "@hulumi/k8s-baseline";

const apiKey = new KubernetesSecretFromAwsSecretsManager("api-key", {
  k8sProvider: cluster.provider,
  namespace: "production",
  secretName: "third-party-api-key",
  awsSecretArn: "arn:aws:secretsmanager:us-east-1:123456789012:secret:prod/api-key-XYZ",
  failureMode: "fail", // or "degrade"
});

failureMode: "fail" (the default) refuses to apply the K8s Secret if the AWS source value is not a JSON object — preventing accidental plaintext leakage. See docs/components/kubernetes-secret-from-asm.md.

Compatibility

Tested chart and Pulumi-provider version matrix lives in COMPATIBILITY.md. Bumps to chart pins go through the same supply-chain discipline as @pulumi/* exact pins.

Verifying SLSA attestations

Every published tarball ships with GitHub Artifact Attestations provenance from the reusable sign-and-publish.yml release lane. Verify before installing:

pnpm pack @hulumi/[email protected] --pack-destination .
gh attestation verify ./hulumi-k8s-baseline-1.5.0.tgz \
  --repo kerberosmansour/hulumi

Documentation

License

Apache-2.0 — see LICENSE and the project-level NOTICE.