Skip to content
Open
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: 4 additions & 0 deletions paasta_tools/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -2032,6 +2032,7 @@ class SystemPaastaConfigDict(TypedDict, total=False):
spark_blockmanager_port: int
skip_cpu_burst_validation: List[str]
skip_unique_instance_name_validation: List[str]
skip_check_monitoring_file_exists: List[str]
tron_default_pool_override: str
spark_kubeconfig: str
spark_iam_user_kubeconfig: str
Expand Down Expand Up @@ -2729,6 +2730,9 @@ def get_skip_cpu_override_validation_services(self) -> List[str]:
def get_skip_cpu_burst_validation_services(self) -> List[str]:
return self.config_dict.get("skip_cpu_burst_validation", [])

def get_skip_monitoring_file_existence_validation_services(self) -> List[str]:
return self.config_dict.get("skip_monitoring_file_existence_validation", [])

def get_skip_unique_instance_name_validation_services(self) -> List[str]:
return self.config_dict.get("skip_unique_instance_name_validation", [])

Expand Down
Loading