Files
nomad/command/asset/asset.go
Tim Gross 0aeeaf1083 node pools: implement node pool init command (#17479)
Implement a `nomad node pool init` command that generates an example spec file
in either HCL or JSON format.
2023-06-13 14:51:29 -04:00

25 lines
439 B
Go

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package asset
import _ "embed"
//go:embed example.nomad.hcl
var JobExample []byte
//go:embed example-short.nomad.hcl
var JobExampleShort []byte
//go:embed connect.nomad.hcl
var JobConnect []byte
//go:embed connect-short.nomad.hcl
var JobConnectShort []byte
//go:embed pool.nomad.hcl
var NodePoolSpec []byte
//go:embed pool.nomad.json
var NodePoolSpecJSON []byte