Skip to content
This repository has been archived by the owner on Feb 3, 2021. It is now read-only.

Feature: remove custom scripts #673

Merged
merged 1 commit into from
Oct 24, 2018
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
4 changes: 0 additions & 4 deletions aztk/error.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,6 @@ class MissingRequiredAttributeError(InvalidModelError):
pass


class InvalidCustomScriptError(InvalidModelError):
pass


class InvalidPluginReferenceError(InvalidModelError):
pass

Expand Down
1 change: 0 additions & 1 deletion aztk/internal/cluster_data/node_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
import yaml

from aztk import models
from aztk.error import InvalidCustomScriptError
from aztk.utils import constants, file_utils, secure_utils

ROOT_PATH = constants.ROOT_PATH
Expand Down
1 change: 0 additions & 1 deletion aztk/models/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from .application_log import ApplicationLog
from .cluster import Cluster
from .cluster_configuration import ClusterConfiguration
from .custom_script import CustomScript
from .file import File
from .file_share import FileShare
from .node_output import NodeOutput
Expand Down
1 change: 0 additions & 1 deletion aztk/models/cluster_configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
from aztk.core.models import Model, fields
from aztk.utils import helpers

from .custom_script import CustomScript
from .file_share import FileShare
from .plugins import PluginConfiguration
from .scheduling_target import SchedulingTarget
Expand Down
7 changes: 0 additions & 7 deletions aztk/models/custom_script.py

This file was deleted.

4 changes: 0 additions & 4 deletions aztk/spark/models/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,6 @@ def __generate_ssh_key_pair(self):
return {"pub_key": pub_key, "priv_key": priv_key}


class CustomScript(aztk.models.CustomScript):
pass


class FileShare(aztk.models.FileShare):
pass

Expand Down