-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
225 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,31 @@ | ||
package api | ||
|
||
// / Get the final tagged Image name | ||
var IMAEGNAME = 1 | ||
var IMAGENAME int32 = 1 | ||
|
||
// / Get the final tagged Image ID | ||
var IMAGEID = 2 | ||
var IMAGEID int32 = 2 | ||
|
||
// / Get the build recipe | ||
var RECIPE = 4 | ||
var RECIPE int32 = 4 | ||
|
||
// Get the used build runtime | ||
var RUNTIME int32 = 8 | ||
|
||
// / Get a read-write filesystem of the Image | ||
var RWFS = 8 | ||
var RWFS int32 = 16 | ||
|
||
// / Get a read-only filesystem of the Image | ||
var ROFS = 16 | ||
var ROFS int32 = 32 | ||
|
||
// / Prepare the filesystem to be chrooted into, requires either RWFilesystem or ROFilesystem | ||
var CHROOTFS = 32 | ||
var CHROOTFS int32 = 64 | ||
|
||
type ScopeData struct { | ||
ImageName string | ||
ImageID string | ||
Recipe Recipe | ||
Runtime string | ||
RWFS string | ||
ROFS string | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters