polyaxon 2.6.0rc1__tar.gz → 2.7.0rc0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/PKG-INFO +2 -2
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_cli/operations.py +1 -1
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_cli/projects.py +2 -2
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_compiler/contexts/contexts.py +5 -5
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_compiler/contexts/dask_job.py +1 -1
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_compiler/contexts/kubeflow/mpi_job.py +1 -1
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_compiler/contexts/kubeflow/mx_job.py +1 -1
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_compiler/contexts/kubeflow/paddle_job.py +1 -1
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_compiler/contexts/kubeflow/pytroch_job.py +1 -1
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_compiler/contexts/kubeflow/tf_job.py +1 -1
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_compiler/contexts/kubeflow/xgb_job.py +1 -1
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_compiler/contexts/ray_job.py +1 -1
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_compiler/resolver/agent.py +1 -1
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_compiler/resolver/runtime.py +1 -1
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_deploy/schemas/deployment.py +1 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_deploy/schemas/ui.py +3 -1
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_docker/converter/base/base.py +1 -1
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_docker/converter/base/env_vars.py +1 -1
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_docker/converter/converters/job.py +1 -1
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_docker/converter/converters/service.py +1 -1
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/component/component.py +4 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/environment/__init__.py +5 -4
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/io/io.py +2 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/matrix/params.py +1 -1
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/operations/compiled_operation.py +4 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/operations/operation.py +5 -3
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/params/params.py +2 -2
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/run/__init__.py +3 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/run/dag.py +6 -6
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/run/dask/dask.py +10 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/run/kubeflow/mpi_job.py +8 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/run/kubeflow/mx_job.py +16 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/run/kubeflow/paddle_job.py +8 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/run/kubeflow/pytorch_job.py +8 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/run/kubeflow/tf_job.py +12 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/run/kubeflow/xgboost_job.py +19 -33
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/run/patch.py +37 -9
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/run/ray/ray.py +9 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/run/resources.py +1 -1
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_fs/fs.py +1 -1
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/converter/base/containers.py +1 -1
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/converter/converters/dask_job.py +1 -1
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/converter/converters/job.py +1 -1
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/converter/converters/kubeflow/mpi_job.py +1 -1
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/converter/converters/kubeflow/mx_job.py +1 -1
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/converter/converters/kubeflow/paddle_job.py +1 -1
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/converter/converters/kubeflow/pytroch_job.py +1 -1
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/converter/converters/kubeflow/tf_job.py +1 -1
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/converter/converters/kubeflow/xgboost_job.py +1 -1
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/converter/converters/ray_job.py +1 -2
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/converter/converters/service.py +1 -1
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/k8s_validation.py +16 -16
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/logging/async_monitor.py +4 -4
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/manager/async_manager.py +5 -3
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/manager/manager.py +6 -6
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_local_process/converter/base/env_vars.py +1 -1
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_local_process/converter/base/init.py +1 -1
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_local_process/converter/base/mounts.py +0 -2
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_local_process/converter/converters/job.py +1 -1
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_local_process/converter/converters/service.py +1 -1
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_managers/project.py +3 -2
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_polyaxonfile/check.py +4 -4
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_polyaxonfile/specs/compiled_operation.py +8 -6
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_polyaxonfile/specs/libs/parser.py +1 -3
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_polyaxonfile/specs/libs/validator.py +1 -1
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_polyaxonfile/specs/operation.py +7 -3
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_pql/manager.py +1 -1
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_pql/parser.py +29 -26
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_runner/agent/base_agent.py +1 -2
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_runner/converter/init/artifacts.py +3 -2
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_runner/converter/init/tensorboard.py +1 -1
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_schemas/client.py +1 -1
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/api/agents_v1_api.py +56 -80
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/api/artifacts_stores_v1_api.py +2 -2
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/api/auth_v1_api.py +2 -6
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/api/connections_v1_api.py +16 -20
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/api/dashboards_v1_api.py +14 -14
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/api/organizations_v1_api.py +1735 -755
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/api/presets_v1_api.py +18 -26
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/api/project_dashboards_v1_api.py +17 -19
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/api/project_searches_v1_api.py +20 -28
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/api/projects_v1_api.py +74 -92
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/api/queues_v1_api.py +22 -30
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/api/runs_v1_api.py +157 -207
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/api/searches_v1_api.py +16 -20
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/api/service_accounts_v1_api.py +30 -38
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/api/tags_v1_api.py +19 -25
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/api/teams_v1_api.py +64 -90
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/api/users_v1_api.py +17 -19
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/api/versions_v1_api.py +4 -4
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/async_client/rest.py +1 -3
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_organization.py +3 -2
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_project_settings.py +2 -1
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_section_spec.py +1 -1
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_user_access.py +3 -2
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/sync_client/api_client.py +2 -6
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/sync_client/rest.py +4 -8
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/pkg.py +1 -1
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon.egg-info/PKG-INFO +2 -2
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon.egg-info/requires.txt +7 -7
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/setup.cfg +0 -22
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/MANIFEST.in +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/__main__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_auxiliaries/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_auxiliaries/cleaner.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_auxiliaries/default_scheduling.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_auxiliaries/init.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_auxiliaries/notifier.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_auxiliaries/sidecar.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_auxiliaries/tuner.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_cli/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_cli/admin.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_cli/artifacts.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_cli/auth.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_cli/check.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_cli/completion.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_cli/components.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_cli/config.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_cli/dashboard.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_cli/errors.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_cli/init.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_cli/models.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_cli/options.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_cli/port_forward.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_cli/project_versions.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_cli/run.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_cli/services/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_cli/services/agent.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_cli/services/clean_artifacts.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_cli/services/docker.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_cli/services/initializer.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_cli/services/notifier.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_cli/services/sidecar.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_cli/services/tuner.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_cli/services/wait.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_cli/session.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_cli/utils.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_cli/version.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_client/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_client/client.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_client/decorators/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_client/decorators/client_call_handler.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_client/decorators/errors.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_client/decorators/is_managed.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_client/impersonate.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_client/init.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_client/mixin.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_client/project.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_client/run.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_client/store.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_client/transport/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_client/transport/http_transport.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_client/transport/periodic_transport.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_client/transport/retry_transport.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_client/transport/socket_transport.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_client/transport/threaded_transport.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_client/transport/ws_client.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_client/workers/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_client/workers/base_worker.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_client/workers/periodic_worker.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_client/workers/queue_worker.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_compiler/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_compiler/contexts/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_compiler/contexts/base.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_compiler/contexts/job.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_compiler/contexts/kubeflow/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_compiler/contexts/service.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_compiler/lineage/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_compiler/lineage/artifacts_collector.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_compiler/lineage/collector.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_compiler/lineage/io_collector.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_compiler/resolver/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_compiler/resolver/resolver.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_config/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_config/manager.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_config/parser.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_config/reader.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_config/spec.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_connections/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_connections/kinds.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_connections/schemas.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_constants/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_constants/globals.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_constants/metadata.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_containers/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_containers/names.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_containers/pull_policy.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_containers/statuses.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_contexts/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_contexts/keys.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_contexts/params.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_contexts/paths.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_contexts/refs.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_contexts/sections.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_deploy/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_deploy/operators/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_deploy/operators/cmd_operator.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_deploy/operators/compose.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_deploy/operators/conda.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_deploy/operators/docker.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_deploy/operators/helm.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_deploy/operators/kubectl.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_deploy/operators/pip.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_deploy/reader.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_deploy/schemas/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_deploy/schemas/auth.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_deploy/schemas/celery.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_deploy/schemas/deployment_types.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_deploy/schemas/email.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_deploy/schemas/ingress.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_deploy/schemas/intervals.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_deploy/schemas/operators.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_deploy/schemas/proxy.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_deploy/schemas/rbac.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_deploy/schemas/root_user.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_deploy/schemas/security_context.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_deploy/schemas/service.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_deploy/schemas/service_types.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_deploy/schemas/ssl.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_dist.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_docker/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_docker/agent.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_docker/builder/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_docker/builder/builder.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_docker/builder/dockerfile.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_docker/builder/generator.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_docker/converter/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_docker/converter/base/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_docker/converter/base/containers.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_docker/converter/base/init.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_docker/converter/base/main.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_docker/converter/base/mounts.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_docker/converter/converters/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_docker/converter/mixins.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_docker/docker_types.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_docker/executor.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_env_vars/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_env_vars/getters/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_env_vars/getters/agent.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_env_vars/getters/owner_entity.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_env_vars/getters/project.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_env_vars/getters/queue.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_env_vars/getters/run.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_env_vars/getters/user.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_env_vars/getters/versioned_entity.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_env_vars/keys.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/builds/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/cache/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/cache/enums.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/component/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/component/base.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/component/component_reference.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/containers/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/containers/container.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/dags/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/early_stopping/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/early_stopping/policies.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/events/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/events/enums.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/hooks/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/init/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/io/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/joins/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/matrix/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/matrix/base.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/matrix/bayes.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/matrix/enums.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/matrix/grid_search.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/matrix/hyperband.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/matrix/hyperopt.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/matrix/iterative.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/matrix/mapping.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/matrix/random_search.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/matrix/tuner.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/mounts/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/mounts/artifacts_mounts.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/notifications/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/operations/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/operations/base.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/operators.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/optimization/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/optimization/enums.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/params/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/params/ops_params.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/plugins/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/references/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/references/dag.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/references/hub.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/references/mixin.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/references/path.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/references/url.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/run/base.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/run/cleaner.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/run/dask/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/run/dask/replica.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/run/enums.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/run/job.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/run/kubeflow/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/run/kubeflow/clean_pod_policy.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/run/kubeflow/replica.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/run/kubeflow/scheduling_policy.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/run/notifier.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/run/ray/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/run/ray/replica.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/run/service.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/run/tuner.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/run/utils.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/schedules/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/schedules/cron.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/schedules/datetime.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/schedules/enums.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/schedules/interval.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/templates/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/termination/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_flow/trigger_policies.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_fs/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_fs/async_manager.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_fs/manager.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_fs/tar.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_fs/types.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_fs/utils.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_fs/watcher.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_init/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_init/artifacts.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_init/auth.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_init/dockerfile.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_init/file.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_init/git.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_init/tensorboard.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/agent/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/agent/agent.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/agent/async_agent.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/constants.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/converter/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/converter/base/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/converter/base/base.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/converter/base/env_vars.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/converter/base/init.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/converter/base/main.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/converter/base/mounts.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/converter/base/sidecar.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/converter/common/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/converter/common/accelerators.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/converter/common/annotations.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/converter/common/volumes.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/converter/converters/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/converter/converters/helpers.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/converter/converters/kubeflow/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/converter/mixins.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/converter/pod/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/converter/pod/spec.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/converter/pod/volumes.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/custom_resources/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/custom_resources/crd.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/custom_resources/dask_job.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/custom_resources/job.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/custom_resources/kubeflow/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/custom_resources/kubeflow/common.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/custom_resources/kubeflow/mpi_job.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/custom_resources/kubeflow/mx_job.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/custom_resources/kubeflow/paddle_job.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/custom_resources/kubeflow/pytorch_job.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/custom_resources/kubeflow/tf_job.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/custom_resources/kubeflow/xgb_job.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/custom_resources/operation.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/custom_resources/ray_job.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/custom_resources/service.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/custom_resources/setter.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/events.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/executor/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/executor/async_executor.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/executor/base.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/executor/executor.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/k8s_schemas.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/logging/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/logging/monitor.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/manager/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/manager/base.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/monitor.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/namespace.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/nodes.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/pods.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_k8s/replica.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_local_process/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_local_process/agent.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_local_process/converter/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_local_process/converter/base/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_local_process/converter/base/base.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_local_process/converter/base/containers.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_local_process/converter/base/main.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_local_process/converter/converters/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_local_process/converter/mixins.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_local_process/executor.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_local_process/process_types.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_managers/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_managers/agent.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_managers/auth.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_managers/cli.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_managers/client.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_managers/compose.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_managers/deploy.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_managers/git.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_managers/home.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_managers/ignore.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_managers/run.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_managers/user.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_notifiers/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_notifiers/spec.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_operations/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_operations/cleaner.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_operations/notifier.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_operations/tuner.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_plugins/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_plugins/sentry.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_polyaxonfile/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_polyaxonfile/manager/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_polyaxonfile/manager/operations.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_polyaxonfile/manager/workflows.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_polyaxonfile/params.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_polyaxonfile/specs/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_polyaxonfile/specs/base.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_polyaxonfile/specs/component.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_polyaxonfile/specs/kinds.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_polyaxonfile/specs/libs/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_polyaxonfile/specs/libs/engine.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_polyaxonfile/specs/sections.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_pql/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_pql/builder.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_runner/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_runner/agent/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_runner/agent/async_agent.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_runner/agent/client.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_runner/agent/sync_agent.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_runner/converter/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_runner/converter/common/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_runner/converter/common/constants.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_runner/converter/common/containers.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_runner/converter/common/volumes.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_runner/converter/converter.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_runner/converter/init/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_runner/converter/init/dockerfile.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_runner/converter/init/file.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_runner/converter/init/git.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_runner/converter/init/store.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_runner/converter/types.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_runner/executor.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_runner/kinds.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_schemas/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_schemas/agent.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_schemas/authentication.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_schemas/base.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_schemas/checks.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_schemas/cli.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_schemas/compatibility.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_schemas/container_resources.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_schemas/home.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_schemas/installation.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_schemas/lifecycle.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_schemas/log_handler.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_schemas/services.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_schemas/types/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_schemas/types/artifacts.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_schemas/types/base.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_schemas/types/clipped.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_schemas/types/dockerfile.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_schemas/types/event.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_schemas/types/file.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_schemas/types/git.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_schemas/types/tensorboard.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_schemas/user.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_schemas/version.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/api/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/async_client/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/async_client/api_client.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/base_api.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/configuration.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_activity.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_agent.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_agent_reconcile_body_request.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_agent_state_response.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_agent_state_response_agent_state.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_agent_status_body_request.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_analytics_spec.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_artifact_tree.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_auth.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_cloning.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_connection_response.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_dashboard.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_dashboard_spec.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_entities_tags.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_entities_transfer.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_entity_notification_body.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_entity_stage_body_request.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_entity_status_body_request.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_events_response.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_list_activities_response.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_list_agents_response.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_list_bookmarks_response.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_list_connections_response.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_list_dashboards_response.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_list_organization_members_response.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_list_organizations_response.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_list_presets_response.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_list_project_versions_response.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_list_projects_response.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_list_queues_response.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_list_run_artifacts_response.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_list_run_connections_response.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_list_run_edges_response.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_list_runs_response.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_list_searches_response.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_list_service_accounts_response.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_list_tags_response.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_list_team_members_response.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_list_teams_response.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_list_token_response.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_operation_body.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_organization_member.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_password_change.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_pipeline.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_preset.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_project.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_project_version.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_queue.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_run.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_run_connection.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_run_edge.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_run_edge_lineage.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_run_edges_graph.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_run_reference_catalog.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_run_settings.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_search.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_search_spec.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_service_account.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_settings_catalog.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_tag.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_team.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_team_member.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_team_settings.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_token.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_trial_start.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_user.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_user_email.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_user_singup.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/schemas/v1_uuids.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sdk/sync_client/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_services/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_services/auth.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_services/headers.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_services/values.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sidecar/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sidecar/container/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sidecar/container/intervals.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sidecar/container/monitors/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sidecar/container/monitors/artifacts.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sidecar/container/monitors/logs.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sidecar/container/monitors/spec.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sidecar/ignore.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_sidecar/processor.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_utils/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_utils/cache.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_utils/cli_constants.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_utils/fixtures/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_utils/fixtures/backfill.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_utils/fixtures/bo.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_utils/fixtures/build.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_utils/fixtures/grid.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_utils/fixtures/jobs.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_utils/fixtures/mapping.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_utils/fixtures/pipelines.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_utils/fixtures/schedule.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_utils/fixtures/services.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_utils/formatting.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_utils/fqn_utils.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_utils/host_utils.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_utils/test_utils.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_utils/urls_utils.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_vendor/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/_vendor/shell_pty.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/api.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/cli.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/client.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/docker.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/exceptions.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/fs.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/k8s.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/logger.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/polyaxonfile.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/py.typed +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/schemas.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/settings.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/tracking/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/tracking/contrib/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/tracking/contrib/fastai.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/tracking/contrib/fastai_v1.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/tracking/contrib/hugging_face.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/tracking/contrib/ignite.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/tracking/contrib/keras.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/tracking/contrib/lightgbm.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/tracking/contrib/pytorch_lightning.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/tracking/contrib/scikit.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/tracking/contrib/tensorboard.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/tracking/contrib/tensorflow.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/tracking/contrib/xgboost.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/tracking/run.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/tuners/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/tuners/bayesian_optimization.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/tuners/grid_search.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/tuners/hyperband.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/tuners/hyperopt.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/tuners/mapping.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/tuners/random_search.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon/types.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon.egg-info/SOURCES.txt +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon.egg-info/dependency_links.txt +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon.egg-info/entry_points.txt +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon.egg-info/top_level.txt +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/polyaxon_sdk/__init__.py +0 -0
- {polyaxon-2.6.0rc1 → polyaxon-2.7.0rc0}/setup.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: polyaxon
|
3
|
-
Version: 2.
|
3
|
+
Version: 2.7.0rc0
|
4
4
|
Summary: Command Line Interface (CLI) and client to interact with Polyaxon API.
|
5
5
|
Home-page: https://github.com/polyaxon/polyaxon
|
6
6
|
Author: Polyaxon, Inc.
|
@@ -51,7 +51,7 @@ Provides-Extra: sandbox
|
|
51
51
|
[](https://polyaxon.com/slack/)
|
52
52
|
|
53
53
|
[](https://polyaxon.com/docs/)
|
54
|
-
[](https://polyaxon.com/docs/releases/2-7/)
|
55
55
|
[](https://github.com/polyaxon/polyaxon/issues)
|
56
56
|
[](https://github.com/orgs/polyaxon/projects/5)
|
57
57
|
|
@@ -1466,7 +1466,7 @@ def logs(ctx, project, uid, follow, hide_time, all_containers, all_info, offline
|
|
1466
1466
|
)
|
1467
1467
|
|
1468
1468
|
try:
|
1469
|
-
from traceml.logging.streamer import
|
1469
|
+
from traceml.logging.streamer import load_logs_from_path
|
1470
1470
|
|
1471
1471
|
load_logs_from_path(
|
1472
1472
|
logs_path=logs_path,
|
@@ -46,7 +46,7 @@ def project(ctx, _project): # pylint:disable=redefined-outer-name
|
|
46
46
|
@click.option(
|
47
47
|
*OPTIONS_NAME["args"],
|
48
48
|
type=str,
|
49
|
-
help="The project name, e.g. 'mnist' or 'acme/mnist'."
|
49
|
+
help="The project name, e.g. 'mnist' or 'acme/mnist'.",
|
50
50
|
)
|
51
51
|
@click.option("--description", type=str, help="Description of the project.")
|
52
52
|
@click.option("--tags", type=str, help="Tags of the project (comma separated values).")
|
@@ -287,7 +287,7 @@ def delete(ctx, _project, yes):
|
|
287
287
|
@click.option(
|
288
288
|
*OPTIONS_NAME["args"],
|
289
289
|
type=str,
|
290
|
-
help="Name of the project, must be unique for the same user."
|
290
|
+
help="Name of the project, must be unique for the same user.",
|
291
291
|
)
|
292
292
|
@click.option("--description", type=str, help="Description of the project.")
|
293
293
|
@click.option("--tags", type=str, help="Tags of the project (comma separated values).")
|
@@ -98,24 +98,24 @@ def resolve_globals_contexts(
|
|
98
98
|
run_outputs_path = ctx_paths.CONTEXT_MOUNT_RUN_OUTPUTS_FORMAT.format(run_path)
|
99
99
|
resolved_contexts[ctx_sections.GLOBALS][
|
100
100
|
ctx_keys.RUN_ARTIFACTS_PATH
|
101
|
-
] = run_artifacts_path
|
101
|
+
] = run_artifacts_path # fmt: skip
|
102
102
|
resolved_contexts[ctx_sections.GLOBALS][
|
103
103
|
ctx_keys.RUN_OUTPUTS_PATH
|
104
|
-
] = run_outputs_path
|
104
|
+
] = run_outputs_path # fmt: skip
|
105
105
|
elif artifacts_store:
|
106
106
|
run_artifacts_path = os.path.join(artifacts_store.store_path, run_path)
|
107
107
|
run_outputs_path = os.path.join(run_artifacts_path, "outputs")
|
108
108
|
resolved_contexts[ctx_sections.GLOBALS][
|
109
109
|
ctx_keys.RUN_ARTIFACTS_PATH
|
110
|
-
] = run_artifacts_path
|
110
|
+
] = run_artifacts_path # fmt: skip
|
111
111
|
resolved_contexts[ctx_sections.GLOBALS][
|
112
112
|
ctx_keys.RUN_OUTPUTS_PATH
|
113
|
-
] = run_outputs_path
|
113
|
+
] = run_outputs_path # fmt: skip
|
114
114
|
|
115
115
|
if plugins.mount_artifacts_store and artifacts_store:
|
116
116
|
resolved_contexts[ctx_sections.GLOBALS][
|
117
117
|
ctx_keys.STORE_PATH
|
118
|
-
] = artifacts_store.store_path
|
118
|
+
] = artifacts_store.store_path # fmt: skip
|
119
119
|
return resolved_contexts
|
120
120
|
|
121
121
|
|
@@ -21,7 +21,7 @@ class DaskJobContextsManager(BaseContextsManager):
|
|
21
21
|
) -> Dict:
|
22
22
|
contexts["init"] = {}
|
23
23
|
contexts["connections"] = {}
|
24
|
-
job = compiled_operation.run
|
24
|
+
job: V1DaskJob = compiled_operation.run
|
25
25
|
|
26
26
|
def _get_replica(replica: Optional[V1DaskReplica]) -> Dict:
|
27
27
|
if not replica:
|
@@ -21,7 +21,7 @@ class MPIJobContextsManager(BaseContextsManager):
|
|
21
21
|
) -> Dict:
|
22
22
|
contexts["init"] = {}
|
23
23
|
contexts["connections"] = {}
|
24
|
-
job = compiled_operation.run
|
24
|
+
job: V1MPIJob = compiled_operation.run
|
25
25
|
|
26
26
|
def _get_replica(replica: Optional[V1KFReplica]) -> Dict:
|
27
27
|
if not replica:
|
@@ -21,7 +21,7 @@ class MXJobContextsManager(BaseContextsManager):
|
|
21
21
|
) -> Dict:
|
22
22
|
contexts["init"] = {}
|
23
23
|
contexts["connections"] = {}
|
24
|
-
job = compiled_operation.run
|
24
|
+
job: V1MXJob = compiled_operation.run
|
25
25
|
|
26
26
|
def _get_replica(replica: Optional[V1KFReplica]) -> Dict:
|
27
27
|
if not replica:
|
@@ -21,7 +21,7 @@ class PaddleJobContextsManager(BaseContextsManager):
|
|
21
21
|
) -> Dict:
|
22
22
|
contexts["init"] = {}
|
23
23
|
contexts["connections"] = {}
|
24
|
-
job = compiled_operation.run
|
24
|
+
job: V1PaddleJob = compiled_operation.run
|
25
25
|
|
26
26
|
def _get_replica(replica: Optional[V1KFReplica]) -> Dict:
|
27
27
|
if not replica:
|
@@ -21,7 +21,7 @@ class PytorchJobContextsManager(BaseContextsManager):
|
|
21
21
|
) -> Dict:
|
22
22
|
contexts["init"] = {}
|
23
23
|
contexts["connections"] = {}
|
24
|
-
job = compiled_operation.run
|
24
|
+
job: V1PytorchJob = compiled_operation.run
|
25
25
|
|
26
26
|
def _get_replica(replica: Optional[V1KFReplica]) -> Dict:
|
27
27
|
if not replica:
|
@@ -21,7 +21,7 @@ class TfJobContextsManager(BaseContextsManager):
|
|
21
21
|
) -> Dict:
|
22
22
|
contexts["init"] = {}
|
23
23
|
contexts["connections"] = {}
|
24
|
-
job = compiled_operation.run
|
24
|
+
job: V1TFJob = compiled_operation.run
|
25
25
|
|
26
26
|
def _get_replica(replica: Optional[V1KFReplica]) -> Dict:
|
27
27
|
if not replica:
|
@@ -21,7 +21,7 @@ class XGBoostJobContextsManager(BaseContextsManager):
|
|
21
21
|
) -> Dict:
|
22
22
|
contexts["init"] = {}
|
23
23
|
contexts["connections"] = {}
|
24
|
-
job = compiled_operation.run
|
24
|
+
job: V1XGBoostJob = compiled_operation.run
|
25
25
|
|
26
26
|
def _get_replica(replica: Optional[V1KFReplica]) -> Dict:
|
27
27
|
if not replica:
|
@@ -21,7 +21,7 @@ class RayJobContextsManager(BaseContextsManager):
|
|
21
21
|
) -> Dict:
|
22
22
|
contexts["init"] = {}
|
23
23
|
contexts["connections"] = {}
|
24
|
-
job = compiled_operation.run
|
24
|
+
job: V1RayJob = compiled_operation.run
|
25
25
|
|
26
26
|
def _get_replica(replica: Optional[V1RayReplica]) -> Dict:
|
27
27
|
if not replica:
|
@@ -71,7 +71,7 @@ class AgentResolver(BaseSchemaModel):
|
|
71
71
|
if agent_config.artifacts_store: # Resolve default artifacts store
|
72
72
|
self.connection_by_names[
|
73
73
|
agent_config.artifacts_store.name
|
74
|
-
] = agent_config.artifacts_store
|
74
|
+
] = agent_config.artifacts_store # fmt: skip
|
75
75
|
|
76
76
|
if (
|
77
77
|
compiled_operation.is_job_run
|
@@ -13,4 +13,6 @@ class UIConfig(BaseSchemaModel):
|
|
13
13
|
assets_version: Optional[StrictStr] = Field(alias="assetsVersion", default=None)
|
14
14
|
admin_enabled: Optional[bool] = Field(alias="adminEnabled", default=None)
|
15
15
|
single_url: Optional[bool] = Field(alias="singleUrl", default=None)
|
16
|
-
default_streams_url: Optional[StrictStr] = Field(
|
16
|
+
default_streams_url: Optional[StrictStr] = Field(
|
17
|
+
alias="defaultStreamsUrl", default=None
|
18
|
+
)
|
@@ -162,7 +162,7 @@ class BaseConverter(
|
|
162
162
|
if memory:
|
163
163
|
docker_resources[
|
164
164
|
"memory"
|
165
|
-
] = docker_types.V1ResourceRequirements.from_k8s_memory(memory)
|
165
|
+
] = docker_types.V1ResourceRequirements.from_k8s_memory(memory) # fmt: skip
|
166
166
|
if gpus:
|
167
167
|
docker_resources["gpus"] = gpus
|
168
168
|
return docker_types.V1ResourceRequirements.from_dict(docker_resources)
|
@@ -18,7 +18,7 @@ class JobConverter(JobMixin, BaseConverter):
|
|
18
18
|
default_sa: Optional[str] = None,
|
19
19
|
default_auth: bool = False,
|
20
20
|
) -> List[docker_types.V1Container]:
|
21
|
-
job = compiled_operation.run
|
21
|
+
job: V1Job = compiled_operation.run
|
22
22
|
plugins = V1Plugins.get_or_create(
|
23
23
|
config=compiled_operation.plugins, auth=default_auth
|
24
24
|
)
|
@@ -4,7 +4,7 @@ from polyaxon._connections import V1Connection, V1ConnectionResource
|
|
4
4
|
from polyaxon._docker import docker_types
|
5
5
|
from polyaxon._docker.converter.base import BaseConverter
|
6
6
|
from polyaxon._docker.converter.mixins import ServiceMixin
|
7
|
-
from polyaxon._flow import V1CompiledOperation, V1Plugins
|
7
|
+
from polyaxon._flow import V1CompiledOperation, V1Plugins
|
8
8
|
|
9
9
|
|
10
10
|
class ServiceConverter(ServiceMixin, BaseConverter):
|
@@ -8,6 +8,7 @@ from clipped.compact.pydantic import (
|
|
8
8
|
validation_always,
|
9
9
|
validation_before,
|
10
10
|
)
|
11
|
+
from clipped.types import GenericStr
|
11
12
|
|
12
13
|
from polyaxon._k8s import k8s_schemas, k8s_validation
|
13
14
|
from polyaxon._schemas.base import BaseSchemaModel
|
@@ -395,9 +396,9 @@ class V1Environment(BaseSchemaModel):
|
|
395
396
|
"dnsConfig",
|
396
397
|
]
|
397
398
|
|
398
|
-
labels: Optional[Dict[StrictStr,
|
399
|
-
annotations: Optional[Dict[StrictStr,
|
400
|
-
node_selector: Optional[Dict[StrictStr,
|
399
|
+
labels: Optional[Dict[StrictStr, GenericStr]] = None
|
400
|
+
annotations: Optional[Dict[StrictStr, GenericStr]] = None
|
401
|
+
node_selector: Optional[Dict[StrictStr, GenericStr]] = Field(
|
401
402
|
alias="nodeSelector", default=None
|
402
403
|
)
|
403
404
|
affinity: Optional[Union[k8s_schemas.V1Affinity, Dict]] = None
|
@@ -428,7 +429,7 @@ class V1Environment(BaseSchemaModel):
|
|
428
429
|
priority: Optional[int] = None
|
429
430
|
restart_policy: Optional[
|
430
431
|
Literal["Always", "OnFailure", "Never", "ExitCode"]
|
431
|
-
] = Field(alias="restartPolicy", default=None)
|
432
|
+
] = Field(alias="restartPolicy", default=None) # fmt: skip
|
432
433
|
|
433
434
|
@field_validator("affinity", **validation_always, **validation_before)
|
434
435
|
def validate_affinity(cls, v):
|
@@ -1039,7 +1039,7 @@ class V1HpQLogUniform(BaseHpParamConfig):
|
|
1039
1039
|
kind: Literal[_IDENTIFIER] = _IDENTIFIER
|
1040
1040
|
value: Optional[
|
1041
1041
|
Union[QLogUniform, QLogUniformList, QLogUniformStr, RefField]
|
1042
|
-
] = None
|
1042
|
+
] = None # fmt: skip
|
1043
1043
|
|
1044
1044
|
@property
|
1045
1045
|
def is_distribution(self):
|
@@ -135,3 +135,7 @@ class V1CompiledOperation(BaseOp, RunMixin):
|
|
135
135
|
raise PolyaxonSchemaError(
|
136
136
|
"Operations with dag runtime do not support the `build` section."
|
137
137
|
)
|
138
|
+
|
139
|
+
def get_replica_types(self):
|
140
|
+
if self.is_distributed_run:
|
141
|
+
return self.run.get_replica_types()
|
@@ -8,7 +8,6 @@ from clipped.compact.pydantic import (
|
|
8
8
|
field_validator,
|
9
9
|
model_validator,
|
10
10
|
validation_after,
|
11
|
-
validation_before,
|
12
11
|
)
|
13
12
|
from clipped.config.patch_strategy import PatchStrategy
|
14
13
|
from clipped.config.schema import skip_partial, to_partial
|
@@ -649,8 +648,11 @@ class V1Operation(BaseOp, TemplateMixinConfig):
|
|
649
648
|
return result
|
650
649
|
|
651
650
|
kind = config.component.run.kind
|
652
|
-
|
653
|
-
|
651
|
+
replica_types = config.component.get_replica_types()
|
652
|
+
value = validate_run_patch(value, kind, replica_types=replica_types)
|
653
|
+
current_value = validate_run_patch(
|
654
|
+
current_value, kind, replica_types=replica_types
|
655
|
+
)
|
654
656
|
run_patch = current_value.patch(value, strategy)
|
655
657
|
run_patch = run_patch.to_dict()
|
656
658
|
run_patch.pop("kind")
|
@@ -386,7 +386,7 @@ class V1Param(BaseSchemaModel, ctx_refs.RefMixin, ParamValueMixin):
|
|
386
386
|
|
387
387
|
_IDENTIFIER = "param"
|
388
388
|
|
389
|
-
value: Any
|
389
|
+
value: Optional[Any] = None
|
390
390
|
ref: Optional[StrictStr] = None
|
391
391
|
context_only: Optional[bool] = Field(alias="contextOnly", default=False)
|
392
392
|
connection: Optional[StrictStr] = None
|
@@ -479,7 +479,7 @@ class ParamSpec(
|
|
479
479
|
raise PolyaxonValidationError(
|
480
480
|
"Param `{}` with type `{}`, "
|
481
481
|
"cannot be turned to an init container automatically.".format(
|
482
|
-
self.name, self.type
|
482
|
+
self.name, self.type
|
483
483
|
)
|
484
484
|
)
|
485
485
|
|
@@ -444,7 +444,7 @@ class V1Dag(BaseRun):
|
|
444
444
|
for g_context in ctx_sections.GLOBALS_CONTEXTS:
|
445
445
|
self._context[
|
446
446
|
"dag.{}.{}".format(ctx_sections.GLOBALS, g_context)
|
447
|
-
] = V1IO.construct(name=g_context, type="str", value="", is_optional=True)
|
447
|
+
] = V1IO.construct(name=g_context, type="str", value="", is_optional=True) # fmt: skip
|
448
448
|
|
449
449
|
self._context["dag.{}".format(ctx_sections.INPUTS)] = V1IO.construct(
|
450
450
|
name="inputs", type="dict", value={}, is_optional=True
|
@@ -541,19 +541,19 @@ class V1Dag(BaseRun):
|
|
541
541
|
# We allow to resolve name, status, project, all outputs/inputs, iteration
|
542
542
|
self._context[
|
543
543
|
"ops.{}.{}".format(op_name, ctx_sections.INPUTS)
|
544
|
-
] = V1IO.construct(name="inputs", type="dict", value={}, is_optional=True)
|
544
|
+
] = V1IO.construct(name="inputs", type="dict", value={}, is_optional=True) # fmt: skip
|
545
545
|
self._context[
|
546
546
|
"ops.{}.{}".format(op_name, ctx_sections.OUTPUTS)
|
547
|
-
] = V1IO.construct(name="outputs", type="dict", value={}, is_optional=True)
|
547
|
+
] = V1IO.construct(name="outputs", type="dict", value={}, is_optional=True) # fmt: skip
|
548
548
|
self._context[
|
549
549
|
"ops.{}.{}".format(op_name, ctx_sections.GLOBALS)
|
550
|
-
] = V1IO.construct(name="globals", type="str", value="", is_optional=True)
|
550
|
+
] = V1IO.construct(name="globals", type="str", value="", is_optional=True) # fmt: skip
|
551
551
|
self._context[
|
552
552
|
"ops.{}.{}".format(op_name, ctx_sections.ARTIFACTS)
|
553
|
-
] = V1IO.construct(name="artifacts", type="str", value="", is_optional=True)
|
553
|
+
] = V1IO.construct(name="artifacts", type="str", value="", is_optional=True) # fmt: skip
|
554
554
|
self._context[
|
555
555
|
"ops.{}.{}".format(op_name, ctx_sections.INPUTS_OUTPUTS)
|
556
|
-
] = V1IO.construct(name="io", type="str", value={}, is_optional=True)
|
556
|
+
] = V1IO.construct(name="io", type="str", value={}, is_optional=True) # fmt: skip
|
557
557
|
|
558
558
|
for op in self.operations:
|
559
559
|
if op.has_component_reference:
|
@@ -175,3 +175,13 @@ class V1DaskJob(BaseRun, DestinationImageMixin):
|
|
175
175
|
if self.scheduler:
|
176
176
|
init += self.scheduler.get_all_init()
|
177
177
|
return init
|
178
|
+
|
179
|
+
def get_replica_types(self):
|
180
|
+
types = []
|
181
|
+
if self.job:
|
182
|
+
types.append("job")
|
183
|
+
if self.worker:
|
184
|
+
types.append("worker")
|
185
|
+
if self.scheduler:
|
186
|
+
types.append("scheduler")
|
187
|
+
return types
|
@@ -185,3 +185,11 @@ class V1MPIJob(BaseRun, DestinationImageMixin):
|
|
185
185
|
if self.worker:
|
186
186
|
init += self.worker.get_all_init()
|
187
187
|
return init
|
188
|
+
|
189
|
+
def get_replica_types(self):
|
190
|
+
types = []
|
191
|
+
if self.launcher:
|
192
|
+
types.append("launcher")
|
193
|
+
if self.worker:
|
194
|
+
types.append("worker")
|
195
|
+
return types
|
@@ -313,3 +313,19 @@ class V1MXJob(BaseRun, DestinationImageMixin):
|
|
313
313
|
if self.tuner_server:
|
314
314
|
init += self.tuner_server.get_all_init()
|
315
315
|
return init
|
316
|
+
|
317
|
+
def get_replica_types(self):
|
318
|
+
types = []
|
319
|
+
if self.scheduler:
|
320
|
+
types.append("scheduler")
|
321
|
+
if self.server:
|
322
|
+
types.append("server")
|
323
|
+
if self.worker:
|
324
|
+
types.append("worker")
|
325
|
+
if self.tuner:
|
326
|
+
types.append("tuner")
|
327
|
+
if self.tuner_tracker:
|
328
|
+
types.append("tuner_tracker")
|
329
|
+
if self.tuner_server:
|
330
|
+
types.append("tuner_server")
|
331
|
+
return types
|
@@ -205,3 +205,11 @@ class V1PaddleJob(BaseRun, DestinationImageMixin):
|
|
205
205
|
if self.worker:
|
206
206
|
init += self.worker.get_all_init()
|
207
207
|
return init
|
208
|
+
|
209
|
+
def get_replica_types(self):
|
210
|
+
types = []
|
211
|
+
if self.master:
|
212
|
+
types.append("master")
|
213
|
+
if self.worker:
|
214
|
+
types.append("worker")
|
215
|
+
return types
|
@@ -218,3 +218,11 @@ class V1PytorchJob(BaseRun, DestinationImageMixin):
|
|
218
218
|
if self.worker:
|
219
219
|
init += self.worker.get_all_init()
|
220
220
|
return init
|
221
|
+
|
222
|
+
def get_replica_types(self):
|
223
|
+
types = []
|
224
|
+
if self.master:
|
225
|
+
types.append("master")
|
226
|
+
if self.worker:
|
227
|
+
types.append("worker")
|
228
|
+
return types
|
@@ -248,3 +248,15 @@ class V1TFJob(BaseRun, DestinationImageMixin):
|
|
248
248
|
if self.evaluator:
|
249
249
|
init += self.evaluator.get_all_init()
|
250
250
|
return init
|
251
|
+
|
252
|
+
def get_replica_types(self):
|
253
|
+
types = []
|
254
|
+
if self.chief:
|
255
|
+
types.append("chief")
|
256
|
+
if self.ps:
|
257
|
+
types.append("ps")
|
258
|
+
if self.worker:
|
259
|
+
types.append("worker")
|
260
|
+
if self.evaluator:
|
261
|
+
types.append("evaluator")
|
262
|
+
return types
|
@@ -130,63 +130,49 @@ class V1XGBoostJob(BaseRun, DestinationImageMixin):
|
|
130
130
|
worker: Optional[Union[V1KFReplica, RefField]] = None
|
131
131
|
|
132
132
|
def apply_image_destination(self, image: str):
|
133
|
-
if self.
|
134
|
-
self.
|
135
|
-
self.
|
136
|
-
if self.ps:
|
137
|
-
self.ps.container = self.ps.container or V1Container()
|
138
|
-
self.ps.container.image = image
|
133
|
+
if self.master:
|
134
|
+
self.master.container = self.master.container or V1Container()
|
135
|
+
self.master.container.image = image
|
139
136
|
if self.worker:
|
140
137
|
self.worker.container = self.worker.container or V1Container()
|
141
138
|
self.worker.container.image = image
|
142
|
-
if self.evaluator:
|
143
|
-
self.evaluator.container = self.evaluator.container or V1Container()
|
144
|
-
self.evaluator.container.image = image
|
145
139
|
|
146
140
|
def get_resources(self):
|
147
141
|
resources = V1RunResources()
|
148
|
-
if self.
|
149
|
-
resources += self.
|
150
|
-
if self.ps:
|
151
|
-
resources += self.ps.get_resources()
|
142
|
+
if self.master:
|
143
|
+
resources += self.master.get_resources()
|
152
144
|
if self.worker:
|
153
145
|
resources += self.worker.get_resources()
|
154
|
-
if self.evaluator:
|
155
|
-
resources += self.evaluator.get_resources()
|
156
146
|
return resources
|
157
147
|
|
158
148
|
def get_all_containers(self):
|
159
149
|
containers = []
|
160
|
-
if self.
|
161
|
-
containers += self.
|
162
|
-
if self.ps:
|
163
|
-
containers += self.ps.get_all_containers()
|
150
|
+
if self.master:
|
151
|
+
containers += self.master.get_all_containers()
|
164
152
|
if self.worker:
|
165
153
|
containers += self.worker.get_all_containers()
|
166
|
-
if self.evaluator:
|
167
|
-
containers += self.evaluator.get_all_containers()
|
168
154
|
return containers
|
169
155
|
|
170
156
|
def get_all_connections(self):
|
171
157
|
connections = []
|
172
|
-
if self.
|
173
|
-
connections += self.
|
174
|
-
if self.ps:
|
175
|
-
connections += self.ps.get_all_connections()
|
158
|
+
if self.master:
|
159
|
+
connections += self.master.get_all_connections()
|
176
160
|
if self.worker:
|
177
161
|
connections += self.worker.get_all_connections()
|
178
|
-
if self.evaluator:
|
179
|
-
connections += self.evaluator.get_all_connections()
|
180
162
|
return connections
|
181
163
|
|
182
164
|
def get_all_init(self):
|
183
165
|
init = []
|
184
|
-
if self.
|
185
|
-
init += self.
|
186
|
-
if self.ps:
|
187
|
-
init += self.ps.get_all_init()
|
166
|
+
if self.master:
|
167
|
+
init += self.master.get_all_init()
|
188
168
|
if self.worker:
|
189
169
|
init += self.worker.get_all_init()
|
190
|
-
if self.evaluator:
|
191
|
-
init += self.evaluator.get_all_init()
|
192
170
|
return init
|
171
|
+
|
172
|
+
def get_replica_types(self):
|
173
|
+
types = []
|
174
|
+
if self.master:
|
175
|
+
types.append(self.master.replicas)
|
176
|
+
if self.worker:
|
177
|
+
types.append(self.worker.replicas)
|
178
|
+
return types
|