blob: ba7700054a961994a3b88e4a05fbc2490f8ab390 [file] [log] [blame]
#!/usr/bin/python
# *****************************************************************************
#
# Copyright (c) 2016, EPAM SYSTEMS INC
#
# Licensed 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.
#
# ******************************************************************************
from dlab.actions_lib import *
from dlab.meta_lib import *
from dlab.fab import *
import sys
import json
if __name__ == "__main__":
try:
image_conf = dict()
image_conf['service_base_name'] = os.environ['conf_service_base_name']
image_conf['resource_group_name'] = os.environ['azure_resource_group_name']
image_conf['full_image_name'] = os.environ['notebook_image_name']
image = AzureMeta().get_image(image_conf['resource_group_name'], image_conf['full_image_name'])
if image != '':
AzureActions().remove_image(image_conf['resource_group_name'], image_conf['full_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:
print('Error: {0}'.format(err))
append_result("Failed to delete existing notebook image", str(err))
sys.exit(1)