UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.49 kB
/** * **talosctl** - CLI for out-of-band management of Kubernetes nodes created by Talos * * @domain `talos.dev` * @programs `talosctl` * @version `1.10.6` (30 versions available) * @versions From newest version to oldest. * * @install `launchpad install talosctl` * @name `talosctl` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.talosctl * // Or access via domain * const samePkg = pantry.talosdev * console.log(pkg === samePkg) // true * console.log(pkg.name) // "talosctl" * console.log(pkg.description) // "CLI for out-of-band management of Kubernetes no..." * console.log(pkg.programs) // ["talosctl"] * console.log(pkg.versions[0]) // "1.10.6" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/talos-dev.md * @see https://ts-pkgx.netlify.app/usage */ export declare const talosctlPackage: { /** * The display name of this package. */ name: 'talosctl'; /** * The canonical domain name for this package. */ domain: 'talos.dev'; /** * Brief description of what this package does. */ description: 'CLI for out-of-band management of Kubernetes nodes created by Talos'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/talos.dev/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install talosctl'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['talosctl']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.10.6', '1.10.5', '1.10.4', '1.10.3', '1.10.2', '1.10.1', '1.10.0', '1.9.6', '1.9.5', '1.9.4', '1.9.3', '1.9.2', '1.9.1', '1.9.0', '1.8.4', '1.8.3', '1.8.2', '1.8.1', '1.8.0', '1.7.7', '1.7.6', '1.7.5', '1.7.4', '1.7.3', '1.7.2', '1.7.1', '1.7.0', '1.6.8', '1.6.7', '1.6.6']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) talosctl -- $SHELL -i'; launchpadInstallCommand: 'launchpad install talosctl' }; export type TalosctlPackage = typeof talosctlPackage