UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.58 kB
/** * **kustomize** - Template-free customization of Kubernetes YAML manifests * * @domain `kubernetes.io/kustomize` * @programs `kustomize` * @version `5.7.1` (16 versions available) * @versions From newest version to oldest. * * @install `launchpad install kustomize` * @name `kustomize` * @dependencies `kubernetes.io/kubectl` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.kustomize * // Or access via domain * const samePkg = pantry.kubernetesiokustomize * console.log(pkg === samePkg) // true * console.log(pkg.name) // "kustomize" * console.log(pkg.description) // "Template-free customization of Kubernetes YAML ..." * console.log(pkg.programs) // ["kustomize"] * console.log(pkg.versions[0]) // "5.7.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/kubernetes-io/kustomize.md * @see https://ts-pkgx.netlify.app/usage */ export declare const kustomizePackage: { /** * The display name of this package. */ name: 'kustomize'; /** * The canonical domain name for this package. */ domain: 'kubernetes.io/kustomize'; /** * Brief description of what this package does. */ description: 'Template-free customization of Kubernetes YAML manifests'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/kubernetes.io/kustomize/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install kustomize'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['kustomize']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['kubernetes.io/kubectl']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['5.7.1', '5.7.0', '5.6.0', '5.5.0', '5.4.3', '5.4.2', '5.4.1', '5.4.0', '5.3.0', '5.2.1', '5.2.0', '5.1.1', '5.1.0', '5.0.3', '5.0.2', '5.0.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) kustomize -- $SHELL -i'; launchpadInstallCommand: 'launchpad install kustomize' }; export type KustomizePackage = typeof kustomizePackage