/** * **velero** - Backup and migrate Kubernetes applications and their persistent volumes * * @domain `velero.io` * @programs `velero` * @version `1.17.1` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install velero.io` * @homepage https://velero.io/ * @buildDependencies `go.dev@~1.23.8` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.veleroio * console.log(pkg.name) // "velero" * console.log(pkg.description) // "Backup and migrate Kubernetes applications and ..." * console.log(pkg.programs) // ["velero"] * console.log(pkg.versions[0]) // "1.17.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/velero-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const veleroioPackage: { /** * The display name of this package. */ name: 'velero'; /** * The canonical domain name for this package. */ domain: 'velero.io'; /** * Brief description of what this package does. */ description: 'Backup and migrate Kubernetes applications and their persistent volumes'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/velero.io/package.yml'; homepageUrl: 'https://velero.io/'; githubUrl: 'https://github.com/vmware-tanzu/velero'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install velero.io'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +velero.io -- $SHELL -i'; launchpadInstallCommand: 'launchpad install velero.io'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['velero']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev@~1.23.8']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.17.1', '1.17.0', '1.16.2', '1.16.1']; aliases: readonly [] }; export type VeleroioPackage = typeof veleroioPackage