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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@pixie-labs/pixie-eks-blueprints-addon

v0.0.1

Published

This repository contains the source code for the Pixie AddOn for EKS Blueprints. EKS Blueprints is a [CDK](https://aws.amazon.com/cdk/) construct that makes it easy for customers to configure and deploy Pixie as part of a EKS Blueprint cluster on [Amazon

Downloads

3

Readme

Pixie AddOn for EKS Blueprints

This repository contains the source code for the Pixie AddOn for EKS Blueprints. EKS Blueprints is a CDK construct that makes it easy for customers to configure and deploy Pixie as part of a EKS Blueprint cluster on Amazon EKS.

Pixie is an open source observability tool for Kubernetes applications. Use Pixie to view the high-level state of your cluster (service maps, cluster resources, application traffic) and also drill-down into more detailed views (pod state, flame graphs, individual full-body application requests). Read more about Pixie here.

Installation

Using npm:

$ npm install @pixie-labs/pixie-blueprints-addon

Usage

Using deploy key:

import * as cdk from 'aws-cdk-lib';
import * as ssp from '@aws-quickstart/eks-blueprints';
import { PixieAddOn } from '@pixie-labs/pixie-eks-blueprints-addon';

const app = new cdk.App();

ssp.EksBlueprint.builder()
    .addOns(new PixieAddOn({
        deployKey: "pixie-deploy-key", // Create and copy from Pixie Admin UI
    }))
    .region(process.env.AWS_REGION)
    .account(process.env.AWS_ACCOUNT)
    .build(app, 'my-test-cluster');

Using deploy key stored in Secrets Manager:

import { App } from '@aws-cdk/core';
import * as ssp from '@aws-quickstart/ssp-amazon-eks';
import { PixieAddOn } from '@pixie-labs/pixie-blueprints-addon';

const app = new App();

ssp.EksBlueprint.builder()
    .addOns(new ssp.addons.SecretsStoreAddOn)
    .addOns(new PixieAddOn({
        deployKeySecretName: "pixie-deploy-key-secret", // Name of secret in Secrets Manager.
    }))
    .region(process.env.AWS_REGION)
    .account(process.env.AWS_ACCOUNT)
    .build(app, 'my-test-cluster');

PixieAddOn Options (props)

deployKey: string (optional)

Pixie deployment key (plain text). Log into the Admin UI in Pixie to generate a deployment key. This attaches your Pixie deployment to your org.

deployKeySecretName: string (optional)

The name of the Pixie deployment key secret in Secrets Manager. The value of the key in Secrets Manager should be the deploy key in plaintext. Do not nest it inside a JSON object.

namespace?: string (optional)

Namespace to deploy Pixie to. Default: pl

cloudAddr?: string (optional)

The address of Pixie Cloud. This should only be modified if you have deployed your own self-hosted Pixie Cloud. By default, it will be set to Community Cloud for Pixie.

devCloudNamespace?: string (optional)

If running in a self-hosted cloud with no DNS configured, the namespace in which the self-hosted cloud is running.

clusterName?: string (optional)

The name of cluster. If none is specified, a random name will be generated.

useEtcdOperator?: boolean (optional)

Whether the metadata store should use etcd to store metadata, or use a persistent volume store. If not specified, the operator will deploy based on the cluster's storageClass configuration.

pemMemoryLimit?: string (optional)

The memory limit applied to the PEMs (data collectors). Set to 2Gi by default.

dataAccess?: "Full"|"Restricted"|"PIIRestricted" (optional)

DataAccess defines the level of data that may be accesssed when executing a script on the cluster. If none specified, assumes full data access.

patches?: [key: string]: string (optional)

Custom K8s patches which should be applied to the Pixie YAMLs. The key should be the name of the K8s resource, and the value is the patch that should be applied.

version?: string (optional)

Helm chart version.

repository?: string, release?: string, chart?: string (optional)

Additional options for customers who may need to supply their own private Helm repository.

License

pixie-eks-blueprints-addon is licensed under the Apache 2.0 License.