UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.27 kB
/** * **linkerd** - Ultralight, security-first service mesh for Kubernetes. Main repo for Linkerd 2.x. * * @domain `linkerd.io/linkerd2` * @programs `linkerd` * @version `2.14.10` (9 versions available) * @versions From newest version to oldest. * * @install `launchpad install linkerd` * @aliases `linkerd` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.linkerd * // Or access via domain * const samePkg = pantry.linkerdiolinkerd2 * console.log(pkg === samePkg) // true * console.log(pkg.name) // "linkerd2" * console.log(pkg.description) // "Ultralight, security-first service mesh for Kub..." * console.log(pkg.programs) // ["linkerd"] * console.log(pkg.versions[0]) // "2.14.10" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/linkerd-io/linkerd2.md * @see https://ts-pkgx.netlify.app/usage */ export declare const linkerdPackage: { /** * The display name of this package. */ name: 'linkerd2'; /** * The canonical domain name for this package. */ domain: 'linkerd.io/linkerd2'; /** * Brief description of what this package does. */ description: 'Ultralight, security-first service mesh for Kubernetes. Main repo for Linkerd 2.x.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/linkerd.io/linkerd2/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/linkerd/linkerd2'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install linkerd'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['linkerd']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.14.10', '2.14.9', '2.14.8', '2.14.7', '2.14.6', '2.14.5', '2.14.4', '2.14.3', '2.14.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['linkerd'] }; export type LinkerdPackage = typeof linkerdPackage