/** * **kube-capacity** - A simple CLI that provides an overview of the resource requests, limits, and utilization in a Kubernetes cluster * * @domain `github.com/robscott/kube-capacity` * @programs `kube-capacity` * @version `0.8.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/robscott/kube-capacity` * @buildDependencies `go.dev@~1.21` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomrobscottkubecapacity * console.log(pkg.name) // "kube-capacity" * console.log(pkg.description) // "A simple CLI that provides an overview of the r..." * console.log(pkg.programs) // ["kube-capacity"] * console.log(pkg.versions[0]) // "0.8.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/robscott/kube-capacity.md * @see https://ts-pkgx.netlify.app/usage */ export declare const kubecapacityPackage: { /** * The display name of this package. */ name: 'kube-capacity'; /** * The canonical domain name for this package. */ domain: 'github.com/robscott/kube-capacity'; /** * Brief description of what this package does. */ description: 'A simple CLI that provides an overview of the resource requests, limits, and utilization in a Kubernetes cluster'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/robscott/kube-capacity/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/robscott/kube-capacity'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/robscott/kube-capacity'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/robscott/kube-capacity -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/robscott/kube-capacity'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['kube-capacity']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev@~1.21']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.8.0']; aliases: readonly [] }; export type KubecapacityPackage = typeof kubecapacityPackage