UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.36 kB
/** * **cilium** - CLI to install, manage & troubleshoot Kubernetes clusters running Cilium * * @domain `cilium.io/cilium` * @programs `cilium` * @version `0.18.4` (25 versions available) * @versions From newest version to oldest. * * @install `launchpad install cilium` * @name `cilium` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.cilium * // Or access via domain * const samePkg = pantry.ciliumiocilium * console.log(pkg === samePkg) // true * console.log(pkg.name) // "cilium" * console.log(pkg.description) // "CLI to install, manage & troubleshoot Kubernete..." * console.log(pkg.programs) // ["cilium"] * console.log(pkg.versions[0]) // "0.18.4" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/cilium-io/cilium.md * @see https://ts-pkgx.netlify.app/usage */ export declare const ciliumPackage: { /** * The display name of this package. */ name: 'cilium'; /** * The canonical domain name for this package. */ domain: 'cilium.io/cilium'; /** * Brief description of what this package does. */ description: 'CLI to install, manage & troubleshoot Kubernetes clusters running Cilium'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/cilium.io/cilium/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install cilium'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['cilium']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.18.4', '0.18.3', '0.18.2', '0.18.1', '0.18.0', '0.17.0', '0.16.24', '0.16.23', '0.16.22', '0.16.21', '0.16.20', '0.16.19', '0.16.18', '0.16.17', '0.16.16', '0.16.15', '0.16.14', '0.16.13', '0.16.12', '0.16.11', '0.16.10', '0.16.9', '0.16.8', '0.16.7', '0.16.6']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type CiliumPackage = typeof ciliumPackage