70e73abf7f
updated go.mod |
||
---|---|---|
config | ||
hello | ||
.gitignore | ||
go.mod | ||
go.sum | ||
LICENSE | ||
main.go | ||
README.md |
nomad-skeleton-driver-plugin
This project is a Hashicorp Nomad task driver plugin skeleton implementation. You can clone and modify this to get started writing your own task driver plugin.
Requirements
Get Started
Download the project module:
go get github.com/hashicorp/nomad-skeleton-driver-plugin
Follow the comments marked with a TODO
tag to implement your driver's logic.
For more information consult the Nomad documentation on
plugins.
The initial state of the skeleton is a simple task that outputs a greeting. You
can try it out by starting a Nomad server and client and running the job
provided in the config
folder:
go build
nomad agent -dev -config=./config/client.hcl -plugin-dir=$(PWD)
# in another shell
nomad run ./config/example.nomad
You should rename the project's root folder and the hello
module to fit your
own driver.
Code Organization
The skeleton driver comes with an in memory task state store (see
hello/state.go
). This in-memory map is for storing runtime details (like a
process id). The details of what to store is left to the implementation of the
task driver. Fields stored in the base implementation in this skeleton can be
found in the taskHandle
struct.