Skip to content

Commit 8b49d66

Browse files
committed
Merge pull request #663 from krancour/update-blacklist
chore(dockerclient): Add workflow-manager to repo blacklist
2 parents 1c8a17c + c38e691 commit 8b49d66

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

rootfs/registry/dockerclient.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ def check_blacklist(repo):
126126
"""Check a Docker repository name for collision with deis/* components."""
127127
blacklisted = [ # NOTE: keep this list up to date!
128128
'builder', 'controller', 'database', 'dockerbuilder', 'etcd', 'minio', 'registry',
129-
'router', 'slugbuilder', 'slugrunner', 'workflow',
129+
'router', 'slugbuilder', 'slugrunner', 'workflow', 'workflow-manager',
130130
]
131131
if any("deis/{}".format(c) in repo for c in blacklisted):
132132
raise PermissionDenied("Repository name {} is not allowed, as it is reserved by Deis".format(repo)) # noqa

0 commit comments

Comments
 (0)