builder: add Node type

Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax
2023-02-17 23:56:13 +01:00
parent bb8a659d9e
commit 259abb56df

View File

@@ -30,3 +30,11 @@ export interface NodeInfo {
buildkitVersion?: string;
platforms?: string;
}
export interface Node {
name?: string;
endpoint?: string;
'driver-opts'?: Array<string>;
'buildkitd-flags'?: string;
platforms?: string;
}