Skip to content
This repository was archived by the owner on Sep 3, 2022. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions containers/base/third_party_licenses.csv
Original file line number Diff line number Diff line change
Expand Up @@ -251,3 +251,4 @@ xgboost,https://raw.githubusercontent.com/dmlc/xgboost/master/LICENSE,Apache 2.0
zict,https://raw.githubusercontent.com/dask/zict/master/LICENSE.txt,BSD
zope.deprecation,https://raw.githubusercontent.com/zopefoundation/zope.deprecation/master/LICENSE.txt,ZPL
google-cloud-dataflow,https://raw.githubusercontent.com/apache/beam/master/LICENSE,Apache 2.0
soupsieve,https://raw.githubusercontent.com/facelessuser/soupsieve/master/LICENSE.md,MIT
36 changes: 25 additions & 11 deletions tools/cli/commands/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,9 @@ class InvalidInstanceException(Exception):

_MESSAGE = (
'The specified instance, {}, does not appear '
'to have been created by the `datalab` tool, and '
'so cannot be managed by it.')
'to have been created by the `datalab` tool, or '
'from any GCE Deeplearning images. Therefore it '
'cannot be managed by `datalab` tool.')

def __init__(self, instance_name):
super(InvalidInstanceException, self).__init__(
Expand Down Expand Up @@ -240,22 +241,35 @@ def flatten_metadata(metadata):
return result


def _check_datalab_tag(instance, tags):
def _check_instance_allowed(instance, status_tags_and_metadata):
"""Check that the given "tags" object contains `datalab`.

This is used to verify that a VM was created by the `datalab create`
command.
command or was from GCE Deeplearning images, by checking if the VM
description contains a tag of 'datalab' or includes a c2d-tensorflow
licence string.

Args:
instance: The name of the instance to check
tags: An object with an 'items' field that is a list of tags.
status_tags_and_metadata: An object containing the result of GCE
VM instance description.
Raises:
InvalidInstanceException: If the check fails.
"""
tags = status_tags_and_metadata.get('tags', {})
items = tags.get('items', [])
if 'datalab' not in items:
raise InvalidInstanceException(instance)
return

if 'datalab' in items:
return
else:
_license = ('https://www.googleapis.com/compute/v1/projects/'
'click-to-deploy-images/global/licenses/c2d-tensorflow')
disks = status_tags_and_metadata.get('disks', [])
for disk in disks:
if _license in disk.get('licenses', []):
return

raise InvalidInstanceException(instance)


def describe_instance(args, gcloud_compute, instance):
Expand All @@ -282,16 +296,16 @@ def describe_instance(args, gcloud_compute, instance):
if args.zone:
get_cmd.extend(['--zone', args.zone])
get_cmd.extend(
['--format', 'json(status,tags.items,metadata.items)', instance])
['--format', 'json(status,tags.items,metadata.items,disks[].licenses)',
instance])
with tempfile.TemporaryFile() as stdout, \
tempfile.TemporaryFile() as stderr:
try:
gcloud_compute(args, get_cmd, stdout=stdout, stderr=stderr)
stdout.seek(0)
json_result = stdout.read().decode('utf-8').strip()
status_tags_and_metadata = json.loads(json_result)
tags = status_tags_and_metadata.get('tags', {})
_check_datalab_tag(instance, tags)
_check_instance_allowed(instance, status_tags_and_metadata)

status = status_tags_and_metadata.get('status', 'UNKNOWN')
metadata = status_tags_and_metadata.get('metadata', {})
Expand Down