ts-pkgx
Version:
A library & CLI for managing packages
76 lines • 2.91 kB
TypeScript
/**
* **helmfile** - Declaratively deploy your Kubernetes manifests, Kustomize configs, and Charts as Helm releases. Generate all-in-one manifests for use with ArgoCD.
*
* @domain `github.com/helmfile/helmfile`
* @programs `helmfile`
* @version `1.1.5` (28 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install helmfile`
* @name `helmfile`
* @dependencies `curl.se/ca-certs`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.helmfile
* // Or access via domain
* const samePkg = pantry.githubcomhelmfilehelmfile
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "helmfile"
* console.log(pkg.description) // "Declaratively deploy your Kubernetes manifests,..."
* console.log(pkg.programs) // ["helmfile"]
* console.log(pkg.versions[0]) // "1.1.5" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/github-com/helmfile/helmfile.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const helmfilePackage: {
/**
* The display name of this package.
*/
name: 'helmfile';
/**
* The canonical domain name for this package.
*/
domain: 'github.com/helmfile/helmfile';
/**
* Brief description of what this package does.
*/
description: 'Declaratively deploy your Kubernetes manifests, Kustomize configs, and Charts as Helm releases. Generate all-in-one manifests for use with ArgoCD.';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/helmfile/helmfile/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/helmfile/helmfile';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install helmfile';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['helmfile'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['curl.se/ca-certs'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.1.5', '1.1.4', '1.1.3', '1.1.2', '1.1.1', '1.1.0', '1.0.0', '0.171.0', '0.170.1', '0.170.0', '0.169.2', '0.169.1', '0.169.0', '0.168.0', '0.167.1', '0.167.0', '0.166.0', '0.165.0', '0.164.0', '0.163.1', '0.163.0', '0.162.0', '0.161.0', '0.160.0', '0.159.0', '0.158.1', '0.158.0', '0.157.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) helmfile -- $SHELL -i';
launchpadInstallCommand: 'launchpad install helmfile'
};
export type HelmfilePackage = typeof helmfilePackage