├── .gitignore ├── GNUmakefile ├── LICENSE ├── README.md ├── example ├── agent.hcl └── example.nomad ├── go.mod ├── go.sum ├── hello ├── driver.go ├── handle.go └── state.go └── main.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-skeleton-driver-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-skeleton-driver-plugin/HEAD/GNUmakefile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-skeleton-driver-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-skeleton-driver-plugin/HEAD/README.md -------------------------------------------------------------------------------- /example/agent.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-skeleton-driver-plugin/HEAD/example/agent.hcl -------------------------------------------------------------------------------- /example/example.nomad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-skeleton-driver-plugin/HEAD/example/example.nomad -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-skeleton-driver-plugin/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-skeleton-driver-plugin/HEAD/go.sum -------------------------------------------------------------------------------- /hello/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-skeleton-driver-plugin/HEAD/hello/driver.go -------------------------------------------------------------------------------- /hello/handle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-skeleton-driver-plugin/HEAD/hello/handle.go -------------------------------------------------------------------------------- /hello/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-skeleton-driver-plugin/HEAD/hello/state.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-skeleton-driver-plugin/HEAD/main.go --------------------------------------------------------------------------------