Skip to content

Commit 40ff491

Browse files
committed
Check for bitbucket-server in update_docker_image_versions.py
dogfood-bot no longer exists.
1 parent 6fe3680 commit 40ff491

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

update_docker_image_versions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ def main(params_path):
2929
content = fd.read()
3030
images = get_image_tags()
3131

32-
if 'docker.sourcegraph.com/dogfood-bot' not in images:
33-
print('WARNING: dogfood-bot image is not present. Please ensure your kctx is pointing to dogfood')
32+
if 'docker.sourcegraph.com/bitbucket-server' not in images:
33+
print('WARNING: bitbucket-server image is not present. Please ensure your kctx is pointing to dogfood')
3434
for name, tag in images.items():
3535
content = re.sub(r'image\: ({})\:([A-Za-z0-9\-\._]+)'.format(name), r'image: \1:{}'.format(tag), content)
3636
with open(params_path, 'w') as fd:

0 commit comments

Comments
 (0)