Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

chart-vendor

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

chart-vendor

Tool for vendoring Helm charts into a Git repository

  • 0.2.0
  • PyPI
  • Socket score

Maintainers
1

chart-vendor

Overview

This is a simple tool which allows you to vendor Helm charts from external sources into your repository, with the ability to apply patches to the vendored charts.

Installation

pip install chart-vendor

Usage

Basic Command

chart-vendor [CHART_NAME]
  • CHART_NAME (optional): The name of the specific chart to fetch. If omitted, all charts specified in the configuration will be fetched.

Options

  • --charts-root: Root path where charts are generated. Default is charts.
  • --check: Check if all chart manifests are applied or not. If there are uncommitted changes or untracked files, the check will fail.

Examples

Fetch All Charts

chart-vendor

Fetch a Specific Chart

chart-vendor my-chart

Check for Uncommitted Changes

chart-vendor --check

Configuration

The CLI expects a configuration file named .charts.yml in the current working directory. This file should define the charts to be managed. The format of the configuration file is based on Pydantic models.

Example Configuration

charts:
  - name: my-chart
    repository:
      url: https://example.com/charts
    version: 1.0.0
    dependencies:
      - name: dependency-chart
        repository:
          url: https://example.com/dependency-charts
        version: 1.2.3
    patches:
      gerrit:
        example.gerrit.com:
          - 12345
          - 67890

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc