Skip to content

Commit

Permalink
Fixed ImageState
Browse files Browse the repository at this point in the history
  • Loading branch information
tomuben committed Nov 25, 2024
1 parent b13219b commit 66f51e8
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@


class ImageState(Enum):
NOT_EXISTING = (0,)
NOT_EXISTING = 0
# After analyze phase or if build phase did touch the image
NEEDS_TO_BE_BUILD = (1,)
TARGET_LOCALLY_AVAILABLE = (2,)
SOURCE_LOCALLY_AVAILABLE = (3,)
REMOTE_AVAILABLE = (4,)
CAN_BE_LOADED = (5,)
NEEDS_TO_BE_BUILD = 1
TARGET_LOCALLY_AVAILABLE = 2
SOURCE_LOCALLY_AVAILABLE = 3
REMOTE_AVAILABLE = 4
CAN_BE_LOADED = 5
# After build phase
WAS_BUILD = (6,)
USED_LOCAL = (7,)
WAS_PULLED = (8,)
WAS_BUILD = 6
USED_LOCAL = 7
WAS_PULLED = 8
WAS_LOADED = 9
WAS_TAGED = 10

Expand Down

0 comments on commit 66f51e8

Please sign in to comment.