Copy files with relative path to active workspace directory of container

This commit is contained in:
Jan-Eric Hellenberg
2021-06-08 11:52:11 +02:00
parent b32e9c2a67
commit ce2b82d43d
6 changed files with 53 additions and 47 deletions

View File

@@ -32,9 +32,6 @@ var (
TLS: false,
Namespace: "default",
},
Runner: runner{
WorkspacePath: "/home/python",
},
Logger: logger{
Level: "INFO",
},
@@ -68,11 +65,6 @@ type nomad struct {
Namespace string
}
// runner configures the runners on the executor
type runner struct {
WorkspacePath string
}
// logger configures the used logger.
type logger struct {
Level string
@@ -82,7 +74,6 @@ type logger struct {
type configuration struct {
Server server
Nomad nomad
Runner runner
Logger logger
}