This instance can only contact the host, and requires this host to be running on AWS itself with the appropriate IAM role.
11 lines
288 B
Go
11 lines
288 B
Go
package osbuildexecutor
|
|
|
|
import (
|
|
"io"
|
|
|
|
"github.com/osbuild/images/pkg/osbuild"
|
|
)
|
|
|
|
type Executor interface {
|
|
RunOSBuild(manifest []byte, store, outputDirectory string, exports, exportPaths, checkpoints, extraEnv []string, result bool, errorWriter io.Writer) (*osbuild.Result, error)
|
|
}
|