UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.69 kB
/** * **kubectl-cnpg** - CloudNativePG is a comprehensive platform designed to seamlessly manage PostgreSQL databases within Kubernetes environments, covering the entire operational lifecycle from initial deployment to ongoing maintenance * * @domain `cloudnative-pg.io` * @programs `kubectl-cnpg` * @version `1.27.0` (9 versions available) * @versions From newest version to oldest. * * @install `launchpad install kubectl-cnpg` * @name `kubectl-cnpg` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.kubectlcnpg * // Or access via domain * const samePkg = pantry.cloudnativepgio * console.log(pkg === samePkg) // true * console.log(pkg.name) // "kubectl-cnpg" * console.log(pkg.description) // "CloudNativePG is a comprehensive platform desig..." * console.log(pkg.programs) // ["kubectl-cnpg"] * console.log(pkg.versions[0]) // "1.27.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/cloudnative-pg-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const kubectlcnpgPackage: { /** * The display name of this package. */ name: 'kubectl-cnpg'; /** * The canonical domain name for this package. */ domain: 'cloudnative-pg.io'; /** * Brief description of what this package does. */ description: 'CloudNativePG is a comprehensive platform designed to seamlessly manage PostgreSQL databases within Kubernetes environments, covering the entire operational lifecycle from initial deployment to ongoing maintenance'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/cloudnative-pg.io/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install kubectl-cnpg'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['kubectl-cnpg']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.27.0', '1.26.1', '1.26.0', '1.25.3', '1.25.2', '1.25.1', '1.25.0', '1.24.4', '1.24.3']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) kubectl-cnpg -- $SHELL -i'; launchpadInstallCommand: 'launchpad install kubectl-cnpg' }; export type KubectlcnpgPackage = typeof kubectlcnpgPackage