/** * **nomad** - Nomad is an easy-to-use, flexible, and performant workload orchestrator that can deploy a mix of microservice, batch, containerized, and non-containerized applications. Nomad is easy to operate and scale and has native Consul and Vault integrations. * * @domain `nomadproject.io` * @programs `nomad` * @version `1.11.0` (18 versions available) * @versions From newest version to oldest. * * @install `launchpad install nomadproject.io` * @homepage https://www.nomadproject.io * @buildDependencies `go.dev@~1.22` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.nomadprojectio * console.log(pkg.name) // "nomad" * console.log(pkg.description) // "Nomad is an easy-to-use, flexible, and performa..." * console.log(pkg.programs) // ["nomad"] * console.log(pkg.versions[0]) // "1.11.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/nomadproject-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const nomadprojectioPackage: { /** * The display name of this package. */ name: 'nomad'; /** * The canonical domain name for this package. */ domain: 'nomadproject.io'; /** * Brief description of what this package does. */ description: 'Nomad is an easy-to-use, flexible, and performant workload orchestrator that can deploy a mix of microservice, batch, containerized, and non-containerized applications. Nomad is easy to operate and scale and has native Consul and Vault integrations.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/nomadproject.io/package.yml'; homepageUrl: 'https://www.nomadproject.io'; githubUrl: 'https://github.com/hashicorp/nomad'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install nomadproject.io'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +nomadproject.io -- $SHELL -i'; launchpadInstallCommand: 'launchpad install nomadproject.io'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['nomad']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev@~1.22']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.11.0', '1.10.5', '1.10.4', '1.10.3', '1.10.2', '1.10.1', '1.10.0', '1.9.7', '1.9.6', '1.9.5', '1.9.4', '1.9.3', '1.9.2', '1.9.1', '1.9.0', '1.8.4', '1.8.3', '1.8.2']; aliases: readonly [] }; export type NomadprojectioPackage = typeof nomadprojectioPackage