blob: ec7d52bd4490e7e885743487c3d0abbbe5a289a9 [file] [log] [blame]
#!/usr/bin/python
# *****************************************************************************
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
# ******************************************************************************
import datalab.fab
import datalab.actions_lib
import datalab.meta_lib
import json
import os
import sys
if __name__ == "__main__":
try:
image_conf = dict()
GCPMeta = datalab.meta_lib.GCPMeta()
GCPActions = datalab.actions_lib.GCPActions()
image_conf['image_name'] = os.environ['notebook_image_name']
image_conf['service_base_name'] = os.environ['conf_service_base_name'] = datalab.fab.replace_multi_symbols(
os.environ['conf_service_base_name'][:20], '-', True)
image_conf['endpoint_name'] = (os.environ['endpoint_name']).replace('_', '-').lower()
image_conf['endpoint_tag'] = image_conf['endpoint_name']
image_conf['project_name'] = os.environ['project_name']
image_conf['project_tag'] = os.environ['project_name']
image_conf['expected_primary_image_name'] = '{}-{}-{}-{}-primary-image-{}'.format(
image_conf['service_base_name'], image_conf['project_name'], image_conf['endpoint_name'],
os.environ['application'], image_conf['image_name']).lower()
image_conf['expected_secondary_image_name'] = '{}-{}-{}-{}-secondary-image-{}'.format(
image_conf['service_base_name'], image_conf['project_name'], image_conf['endpoint_name'],
os.environ['application'], image_conf['image_name']).lower()
primary_image_id = GCPMeta.get_image_by_name(image_conf['expected_primary_image_name'])
if primary_image_id != '':
GCPActions.remove_image(notebook_config['expected_primary_image_name'])
GCPActions.remove_image(notebook_config['expected_secondary_image_name'])
with open("/root/result.json", 'w') as result:
res = {"notebook_image_name": image_conf['full_image_name'],
"status": "terminated",
"Action": "Delete existing notebook image"}
result.write(json.dumps(res))
except Exception as err:
datalab.fab.append_result("Failed to delete existing notebook image", str(err))
sys.exit(1)