Add ability to copy files to and delete files from runner

This commit is contained in:
Jan-Eric Hellenberg
2021-05-31 16:31:15 +02:00
parent 242d0175a2
commit 02b3f52a11
23 changed files with 757 additions and 240 deletions

View File

@ -11,7 +11,10 @@ import (
"strings"
)
var log = logging.GetLogger("nomad")
var (
log = logging.GetLogger("nomad")
ErrorExecutorCommunicationFailed = errors.New("communication with executor failed")
)
// ExecutorApi provides access to an container orchestration solution
type ExecutorApi interface {