├── .github └── workflows │ └── build.yaml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── driver ├── driver.go ├── exec_utils.go ├── handle.go ├── pot.go ├── prepare.go ├── pty_unix.go └── state.go ├── example.hcl ├── go.mod ├── go.sum ├── main.go └── mascot.png /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/nomad-pot-driver/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | nomad-pot-driver 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/nomad-pot-driver/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/nomad-pot-driver/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/nomad-pot-driver/HEAD/README.md -------------------------------------------------------------------------------- /driver/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/nomad-pot-driver/HEAD/driver/driver.go -------------------------------------------------------------------------------- /driver/exec_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/nomad-pot-driver/HEAD/driver/exec_utils.go -------------------------------------------------------------------------------- /driver/handle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/nomad-pot-driver/HEAD/driver/handle.go -------------------------------------------------------------------------------- /driver/pot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/nomad-pot-driver/HEAD/driver/pot.go -------------------------------------------------------------------------------- /driver/prepare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/nomad-pot-driver/HEAD/driver/prepare.go -------------------------------------------------------------------------------- /driver/pty_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/nomad-pot-driver/HEAD/driver/pty_unix.go -------------------------------------------------------------------------------- /driver/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/nomad-pot-driver/HEAD/driver/state.go -------------------------------------------------------------------------------- /example.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/nomad-pot-driver/HEAD/example.hcl -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/nomad-pot-driver/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/nomad-pot-driver/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/nomad-pot-driver/HEAD/main.go -------------------------------------------------------------------------------- /mascot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/nomad-pot-driver/HEAD/mascot.png --------------------------------------------------------------------------------