Allow tags to be marked as hidden. Create a hidden tag on every image during a push to prevent them from getting GCed.

This commit is contained in:
Jake Moshenko 2015-02-18 16:37:38 -05:00
parent 04b06547b8
commit 41108a0856
6 changed files with 63 additions and 14 deletions

View file

@ -194,4 +194,7 @@ class DefaultConfig(object):
SYSTEM_SERVICES_PATH = "conf/init/"
# Services that should not be shown in the logs view.
SYSTEM_SERVICE_BLACKLIST = []
SYSTEM_SERVICE_BLACKLIST = []
# Temporary tag expiration in seconds, this may actually be longer based on GC policy
PUSH_TEMP_TAG_EXPIRATION_S = 60 * 60