mirror of
https://github.com/hashicorp/nomad-driver-rkt
synced 2026-04-05 18:54:15 +00:00
No description
- Go 89.5%
- Shell 7.4%
- Makefile 3.1%
|
|
||
|---|---|---|
| rkt | ||
| scripts | ||
| vendor | ||
| .gitignore | ||
| CHANGELOG.md | ||
| GNUmakefile | ||
| LICENSE | ||
| main.go | ||
| README.md | ||
| Vagrantfile | ||
🚨 Rkt has been abandoned upstream. Users are encouraged to migrate their workloads to a different task driver.
Nomad Rkt Driver
- Website: https://www.nomadproject.io
- Mailing list: Google Groups
Requirements
Building The Driver
Clone repository to: $GOPATH/src/github.com/hashicorp/nomad-driver-rkt
$ mkdir -p $GOPATH/src/github.com/hashicorp; cd $GOPATH/src/github.com/hashicorp
$ git clone git@github.com:hashicorp/nomad-driver-rkt
Enter the provider directory and build the provider
$ cd $GOPATH/src/github.com/hashicorp/nomad-driver-rkt
$ make build
Using the driver
Developing the Provider
If you wish to work on the driver, you'll first need Go installed on your machine. You'll also need to correctly setup a GOPATH, as well as adding $GOPATH/bin to your $PATH.
To compile the provider, run make build. This will build the provider and put the provider binary in the $GOPATH/bin directory.
$ make build
In order to test the provider, you can simply run make test.
$ make test