resolve_functions(input_str: str) → str
parse_service_config(
service_id: str,
service_spec_config: List[Dict[str, Any]]
) → ServiceSpecConfig
Parse service spec configuration and return it as an named tuple.
Args:
service_id
: The ID of the service to be parsed.service_spec_config
: The specificon of the services from config file.
get_services(verbose: bool = True) → List[Service]
Return all specified services as Python object.
get_specific_service(service_id: str) → Service
Return the specified service as Python object.
Args:
service_id
: The ID of the service to be parsed.
get_service_port(service_id: str) → str
Return the service port as string for the specified service.
Args:
service_id
: The ID of the service to be parsed.
ServiceSpecConfig(image, is_enabled, env_vars, args, ports, port_forwards, mounts, startup_log_patterns)
Service(id, config)
This file was automatically generated via lazydocs.