polyaxon 2.0.6rc8__tar.gz → 2.1.0__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.0.6rc8 → polyaxon-2.1.0}/PKG-INFO +2 -2
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_cli/config.py +1 -1
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_cli/run.py +8 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_cli/services/clean_artifacts.py +1 -1
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_client/client.py +17 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_client/run.py +12 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_compiler/resolver/agent.py +1 -1
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_compiler/resolver/runtime.py +1 -1
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_deploy/schemas/service.py +4 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_docker/executor.py +10 -4
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_env_vars/getters/run.py +3 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_env_vars/keys.py +5 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/__init__.py +2 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/builds/__init__.py +19 -6
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/component/base.py +1 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/component/component.py +14 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/environment/__init__.py +5 -5
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/hooks/__init__.py +19 -6
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/matrix/tuner.py +18 -6
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/operations/operation.py +19 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/run/__init__.py +2 -2
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/run/kubeflow/paddle_job.py +34 -2
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/run/kubeflow/pytorch_job.py +50 -3
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/run/kubeflow/scheduling_policy.py +4 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/run/kubeflow/tf_job.py +2 -1
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_fs/fs.py +5 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/converter/converters/job.py +1 -1
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/converter/converters/kubeflow/paddle_job.py +1 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/converter/converters/kubeflow/pytroch_job.py +2 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/converter/converters/kubeflow/tf_job.py +1 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/custom_resources/kubeflow/paddle_job.py +10 -1
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/custom_resources/kubeflow/pytorch_job.py +14 -1
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/custom_resources/kubeflow/tf_job.py +4 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/executor/base.py +23 -6
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/logging/async_monitor.py +73 -12
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/manager/async_manager.py +81 -23
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/manager/base.py +4 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/manager/manager.py +266 -133
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_operations/tuner.py +1 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_polyaxonfile/check.py +2 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_polyaxonfile/manager/operations.py +3 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_polyaxonfile/manager/workflows.py +2 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_polyaxonfile/specs/compiled_operation.py +1 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_polyaxonfile/specs/operation.py +1 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_polyaxonfile/specs/sections.py +3 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_runner/agent/async_agent.py +94 -18
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_runner/agent/base_agent.py +25 -7
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_runner/agent/client.py +15 -1
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_runner/agent/sync_agent.py +83 -18
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_runner/executor.py +13 -7
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_schemas/agent.py +27 -1
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_schemas/client.py +30 -3
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/api/agents_v1_api.py +875 -51
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/api/service_accounts_v1_api.py +12 -12
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/__init__.py +3 -0
- polyaxon-2.1.0/polyaxon/_sdk/schemas/v1_agent_reconcile_body_request.py +14 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sidecar/container/__init__.py +1 -1
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sidecar/container/monitors/spec.py +1 -1
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/pkg.py +1 -1
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon.egg-info/PKG-INFO +2 -2
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon.egg-info/SOURCES.txt +1 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon.egg-info/requires.txt +4 -4
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/MANIFEST.in +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/__main__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_auxiliaries/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_auxiliaries/cleaner.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_auxiliaries/default_scheduling.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_auxiliaries/init.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_auxiliaries/notifier.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_auxiliaries/sidecar.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_auxiliaries/tuner.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_cli/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_cli/admin.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_cli/artifacts.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_cli/auth.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_cli/check.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_cli/completion.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_cli/components.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_cli/dashboard.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_cli/errors.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_cli/init.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_cli/models.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_cli/operations.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_cli/options.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_cli/port_forward.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_cli/project_versions.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_cli/projects.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_cli/services/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_cli/services/agent.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_cli/services/docker.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_cli/services/initializer.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_cli/services/notifier.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_cli/services/sidecar.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_cli/services/tuner.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_cli/services/wait.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_cli/session.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_cli/utils.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_cli/version.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_client/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_client/decorators/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_client/decorators/client_call_handler.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_client/decorators/errors.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_client/decorators/is_managed.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_client/impersonate.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_client/init.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_client/project.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_client/store.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_client/transport/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_client/transport/http_transport.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_client/transport/periodic_transport.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_client/transport/retry_transport.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_client/transport/socket_transport.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_client/transport/threaded_transport.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_client/transport/ws_client.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_client/workers/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_client/workers/base_worker.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_client/workers/periodic_worker.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_client/workers/queue_worker.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_compiler/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_compiler/contexts/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_compiler/contexts/base.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_compiler/contexts/contexts.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_compiler/contexts/dask_job.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_compiler/contexts/job.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_compiler/contexts/kubeflow/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_compiler/contexts/kubeflow/mpi_job.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_compiler/contexts/kubeflow/mx_job.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_compiler/contexts/kubeflow/paddle_job.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_compiler/contexts/kubeflow/pytroch_job.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_compiler/contexts/kubeflow/tf_job.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_compiler/contexts/kubeflow/xgb_job.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_compiler/contexts/ray_job.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_compiler/contexts/service.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_compiler/lineage/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_compiler/lineage/artifacts_collector.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_compiler/lineage/collector.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_compiler/lineage/io_collector.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_compiler/resolver/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_compiler/resolver/resolver.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_config/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_config/manager.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_config/parser.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_config/reader.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_config/spec.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_connections/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_connections/kinds.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_connections/schemas.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_constants/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_constants/globals.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_constants/metadata.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_containers/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_containers/names.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_containers/pull_policy.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_containers/statuses.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_contexts/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_contexts/keys.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_contexts/params.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_contexts/paths.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_contexts/refs.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_contexts/sections.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_deploy/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_deploy/operators/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_deploy/operators/cmd_operator.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_deploy/operators/compose.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_deploy/operators/conda.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_deploy/operators/docker.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_deploy/operators/helm.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_deploy/operators/kubectl.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_deploy/operators/pip.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_deploy/reader.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_deploy/schemas/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_deploy/schemas/auth.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_deploy/schemas/celery.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_deploy/schemas/deployment.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_deploy/schemas/deployment_types.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_deploy/schemas/email.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_deploy/schemas/ingress.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_deploy/schemas/intervals.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_deploy/schemas/operators.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_deploy/schemas/proxy.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_deploy/schemas/rbac.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_deploy/schemas/root_user.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_deploy/schemas/security_context.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_deploy/schemas/service_types.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_deploy/schemas/ssl.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_deploy/schemas/ui.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_dist.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_docker/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_docker/agent.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_docker/builder/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_docker/builder/builder.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_docker/builder/dockerfile.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_docker/builder/generator.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_docker/converter/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_docker/converter/base/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_docker/converter/base/base.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_docker/converter/base/containers.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_docker/converter/base/env_vars.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_docker/converter/base/init.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_docker/converter/base/main.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_docker/converter/base/mounts.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_docker/converter/converters/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_docker/converter/converters/job.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_docker/converter/converters/service.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_docker/converter/mixins.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_docker/docker_types.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_env_vars/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_env_vars/getters/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_env_vars/getters/agent.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_env_vars/getters/owner_entity.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_env_vars/getters/project.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_env_vars/getters/queue.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_env_vars/getters/user.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_env_vars/getters/versioned_entity.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/cache/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/cache/enums.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/component/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/component/component_reference.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/containers/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/containers/container.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/dags/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/early_stopping/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/early_stopping/policies.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/events/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/events/enums.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/init/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/io/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/io/io.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/joins/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/matrix/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/matrix/base.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/matrix/bayes.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/matrix/enums.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/matrix/grid_search.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/matrix/hyperband.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/matrix/hyperopt.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/matrix/iterative.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/matrix/mapping.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/matrix/params.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/matrix/random_search.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/mounts/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/mounts/artifacts_mounts.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/notifications/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/operations/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/operations/base.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/operations/compiled_operation.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/operators.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/optimization/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/optimization/enums.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/params/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/params/ops_params.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/params/params.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/plugins/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/references/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/references/dag.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/references/hub.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/references/mixin.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/references/path.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/references/url.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/run/base.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/run/cleaner.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/run/dag.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/run/dask/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/run/dask/dask.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/run/dask/replica.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/run/enums.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/run/job.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/run/kubeflow/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/run/kubeflow/clean_pod_policy.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/run/kubeflow/mpi_job.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/run/kubeflow/mx_job.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/run/kubeflow/replica.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/run/kubeflow/xgboost_job.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/run/notifier.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/run/patch.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/run/ray/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/run/ray/ray.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/run/ray/replica.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/run/resources.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/run/service.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/run/tuner.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/run/utils.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/schedules/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/schedules/cron.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/schedules/datetime.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/schedules/enums.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/schedules/interval.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/templates/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/termination/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_flow/trigger_policies.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_fs/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_fs/async_manager.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_fs/manager.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_fs/tar.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_fs/types.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_fs/utils.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_fs/watcher.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_init/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_init/artifacts.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_init/auth.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_init/dockerfile.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_init/file.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_init/git.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_init/tensorboard.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/agent/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/agent/agent.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/agent/async_agent.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/constants.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/converter/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/converter/base/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/converter/base/base.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/converter/base/containers.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/converter/base/env_vars.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/converter/base/init.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/converter/base/main.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/converter/base/mounts.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/converter/base/sidecar.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/converter/common/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/converter/common/accelerators.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/converter/common/annotations.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/converter/common/volumes.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/converter/converters/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/converter/converters/dask_job.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/converter/converters/helpers.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/converter/converters/kubeflow/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/converter/converters/kubeflow/mpi_job.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/converter/converters/kubeflow/mx_job.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/converter/converters/kubeflow/xgboost_job.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/converter/converters/ray_job.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/converter/converters/service.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/converter/mixins.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/converter/pod/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/converter/pod/spec.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/converter/pod/volumes.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/custom_resources/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/custom_resources/crd.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/custom_resources/dask_job.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/custom_resources/job.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/custom_resources/kubeflow/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/custom_resources/kubeflow/common.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/custom_resources/kubeflow/mpi_job.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/custom_resources/kubeflow/mx_job.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/custom_resources/kubeflow/xgb_job.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/custom_resources/operation.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/custom_resources/ray_job.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/custom_resources/service.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/custom_resources/setter.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/events.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/executor/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/executor/async_executor.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/executor/executor.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/k8s_schemas.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/k8s_validation.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/logging/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/logging/monitor.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/manager/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/monitor.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/namespace.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/nodes.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/pods.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_k8s/replica.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_managers/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_managers/agent.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_managers/auth.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_managers/cli.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_managers/client.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_managers/compose.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_managers/deploy.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_managers/git.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_managers/home.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_managers/ignore.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_managers/project.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_managers/run.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_managers/user.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_notifiers/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_notifiers/spec.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_operations/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_operations/cleaner.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_operations/notifier.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_plugins/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_plugins/sentry.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_polyaxonfile/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_polyaxonfile/manager/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_polyaxonfile/params.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_polyaxonfile/specs/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_polyaxonfile/specs/base.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_polyaxonfile/specs/component.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_polyaxonfile/specs/kinds.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_polyaxonfile/specs/libs/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_polyaxonfile/specs/libs/engine.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_polyaxonfile/specs/libs/parser.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_polyaxonfile/specs/libs/validator.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_pql/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_pql/builder.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_pql/manager.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_pql/parser.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_runner/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_runner/agent/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_runner/converter/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_runner/converter/common/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_runner/converter/common/constants.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_runner/converter/common/containers.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_runner/converter/common/volumes.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_runner/converter/converter.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_runner/converter/init/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_runner/converter/init/artifacts.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_runner/converter/init/dockerfile.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_runner/converter/init/file.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_runner/converter/init/git.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_runner/converter/init/store.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_runner/converter/init/tensorboard.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_runner/converter/types.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_runner/kinds.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_schemas/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_schemas/authentication.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_schemas/base.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_schemas/checks.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_schemas/cli.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_schemas/compatibility.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_schemas/container_resources.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_schemas/home.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_schemas/installation.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_schemas/lifecycle.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_schemas/log_handler.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_schemas/services.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_schemas/types/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_schemas/types/artifacts.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_schemas/types/base.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_schemas/types/clipped.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_schemas/types/dockerfile.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_schemas/types/event.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_schemas/types/file.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_schemas/types/git.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_schemas/types/tensorboard.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_schemas/user.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_schemas/version.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/api/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/api/artifacts_stores_v1_api.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/api/auth_v1_api.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/api/connections_v1_api.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/api/dashboards_v1_api.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/api/organizations_v1_api.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/api/presets_v1_api.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/api/project_dashboards_v1_api.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/api/project_searches_v1_api.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/api/projects_v1_api.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/api/queues_v1_api.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/api/runs_v1_api.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/api/searches_v1_api.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/api/tags_v1_api.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/api/teams_v1_api.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/api/users_v1_api.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/api/versions_v1_api.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/async_client/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/async_client/api_client.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/async_client/rest.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/base_api.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/configuration.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_activity.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_agent.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_agent_state_response.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_agent_state_response_agent_state.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_agent_status_body_request.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_analytics_spec.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_artifact_tree.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_auth.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_cloning.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_connection_response.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_dashboard.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_dashboard_spec.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_entities_tags.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_entities_transfer.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_entity_notification_body.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_entity_stage_body_request.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_entity_status_body_request.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_events_response.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_list_activities_response.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_list_agents_response.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_list_bookmarks_response.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_list_connections_response.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_list_dashboards_response.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_list_organization_members_response.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_list_organizations_response.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_list_presets_response.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_list_project_versions_response.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_list_projects_response.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_list_queues_response.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_list_run_artifacts_response.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_list_run_connections_response.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_list_run_edges_response.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_list_runs_response.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_list_searches_response.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_list_service_accounts_response.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_list_tags_response.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_list_team_members_response.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_list_teams_response.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_list_token_response.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_operation_body.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_organization.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_organization_member.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_password_change.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_pipeline.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_preset.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_project.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_project_settings.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_project_user_access.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_project_version.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_queue.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_run.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_run_connection.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_run_edge.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_run_edge_lineage.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_run_edges_graph.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_run_reference_catalog.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_run_settings.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_search.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_search_spec.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_section_spec.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_service_account.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_settings_catalog.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_tag.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_team.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_team_member.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_team_settings.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_token.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_trial_start.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_user.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_user_email.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_user_singup.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/schemas/v1_uuids.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/sync_client/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/sync_client/api_client.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sdk/sync_client/rest.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_services/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_services/auth.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_services/headers.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_services/values.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sidecar/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sidecar/container/intervals.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sidecar/container/monitors/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sidecar/container/monitors/artifacts.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sidecar/container/monitors/logs.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sidecar/ignore.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_sidecar/processor.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_utils/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_utils/cache.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_utils/cli_constants.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_utils/fixtures/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_utils/fixtures/backfill.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_utils/fixtures/bo.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_utils/fixtures/build.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_utils/fixtures/grid.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_utils/fixtures/jobs.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_utils/fixtures/mapping.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_utils/fixtures/pipelines.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_utils/fixtures/schedule.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_utils/fixtures/services.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_utils/formatting.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_utils/fqn_utils.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_utils/host_utils.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_utils/test_utils.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_utils/urls_utils.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_vendor/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/_vendor/shell_pty.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/api.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/cli.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/client.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/docker.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/exceptions.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/fs.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/k8s.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/logger.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/polyaxonfile.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/py.typed +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/schemas.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/settings.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/tracking/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/tracking/contrib/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/tracking/contrib/fastai.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/tracking/contrib/fastai_v1.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/tracking/contrib/hugging_face.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/tracking/contrib/ignite.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/tracking/contrib/keras.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/tracking/contrib/lightgbm.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/tracking/contrib/pytorch_lightning.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/tracking/contrib/scikit.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/tracking/contrib/tensorboard.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/tracking/contrib/tensorflow.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/tracking/contrib/xgboost.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/tracking/run.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/tuners/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/tuners/bayesian_optimization.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/tuners/grid_search.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/tuners/hyperband.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/tuners/hyperopt.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/tuners/mapping.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/tuners/random_search.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon/types.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon.egg-info/dependency_links.txt +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon.egg-info/entry_points.txt +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon.egg-info/top_level.txt +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/polyaxon_sdk/__init__.py +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/setup.cfg +0 -0
- {polyaxon-2.0.6rc8 → polyaxon-2.1.0}/setup.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: polyaxon
|
3
|
-
Version: 2.0
|
3
|
+
Version: 2.1.0
|
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-1/)
|
55
55
|
[](https://github.com/polyaxon/polyaxon/issues)
|
56
56
|
[](https://github.com/orgs/polyaxon/projects/5)
|
57
57
|
|
@@ -334,6 +334,12 @@ def _run(
|
|
334
334
|
"If the name is not namespaced by the agent name the default agent is used: "
|
335
335
|
"queue-name or agent-name/queue-name",
|
336
336
|
)
|
337
|
+
@click.option(
|
338
|
+
"--namespace",
|
339
|
+
"-ns",
|
340
|
+
type=str,
|
341
|
+
help="Namespace to use for this run. By default it will use the agent's namespace.",
|
342
|
+
)
|
337
343
|
@click.option(
|
338
344
|
"--nocache",
|
339
345
|
is_flag=True,
|
@@ -412,6 +418,7 @@ def run(
|
|
412
418
|
matrix_num_runs,
|
413
419
|
presets,
|
414
420
|
queue,
|
421
|
+
namespace,
|
415
422
|
nocache,
|
416
423
|
cache,
|
417
424
|
approved,
|
@@ -533,6 +540,7 @@ def run(
|
|
533
540
|
matrix_num_runs=matrix_num_runs,
|
534
541
|
presets=presets,
|
535
542
|
queue=queue,
|
543
|
+
namespace=namespace,
|
536
544
|
cache=cache,
|
537
545
|
nocache=nocache,
|
538
546
|
approved=approved,
|
@@ -92,6 +92,7 @@ class PolyaxonClient:
|
|
92
92
|
self._users_v1 = None
|
93
93
|
self._versions_v1 = None
|
94
94
|
self._agents_v1 = None
|
95
|
+
self._internal_agents_v1 = None
|
95
96
|
self._queues_v1 = None
|
96
97
|
self._service_accounts_v1 = None
|
97
98
|
self._presets_v1 = None
|
@@ -109,6 +110,15 @@ class PolyaxonClient:
|
|
109
110
|
)
|
110
111
|
return ApiClient(self.config.sdk_config, **self.config.client_header)
|
111
112
|
|
113
|
+
def _get_internal_client(self):
|
114
|
+
if self.is_async:
|
115
|
+
return AsyncApiClient(
|
116
|
+
self.config.internal_sdk_config, **self.config.get_internal_header()
|
117
|
+
)
|
118
|
+
return ApiClient(
|
119
|
+
self.config.internal_sdk_config, **self.config.get_internal_header()
|
120
|
+
)
|
121
|
+
|
112
122
|
def reset(self):
|
113
123
|
self._projects_v1 = None
|
114
124
|
self._runs_v1 = None
|
@@ -118,6 +128,7 @@ class PolyaxonClient:
|
|
118
128
|
self._users_v1 = None
|
119
129
|
self._versions_v1 = None
|
120
130
|
self._agents_v1 = None
|
131
|
+
self._internal_agents_v1 = None
|
121
132
|
self._queues_v1 = None
|
122
133
|
self._service_accounts_v1 = None
|
123
134
|
self._presets_v1 = None
|
@@ -169,6 +180,12 @@ class PolyaxonClient:
|
|
169
180
|
self._agents_v1 = AgentsV1Api(self.api_client)
|
170
181
|
return self._agents_v1
|
171
182
|
|
183
|
+
@property
|
184
|
+
def internal_agents_v1(self):
|
185
|
+
if not self._internal_agents_v1:
|
186
|
+
self._internal_agents_v1 = AgentsV1Api(self._get_internal_client())
|
187
|
+
return self._internal_agents_v1
|
188
|
+
|
172
189
|
@property
|
173
190
|
def queues_v1(self):
|
174
191
|
if not self._queues_v1:
|
@@ -501,6 +501,7 @@ class RunClient:
|
|
501
501
|
matrix: Optional[Union[Dict, V1Matrix]] = None,
|
502
502
|
presets: Optional[List[str]] = None,
|
503
503
|
queue: Optional[str] = None,
|
504
|
+
namespace: Optional[str] = None,
|
504
505
|
nocache: Optional[bool] = None,
|
505
506
|
cache: Optional[Union[int, str, bool]] = None,
|
506
507
|
approved: Optional[Union[int, str, bool]] = None,
|
@@ -530,6 +531,8 @@ class RunClient:
|
|
530
531
|
[presets](/docs/core/scheduling-presets/).
|
531
532
|
queue: str, optional, the name of the
|
532
533
|
[queue](/docs/core/scheduling-strategies/queues/) to assign the run to.
|
534
|
+
namespace: str, optional, the namespace to create the run under, by default it will
|
535
|
+
use the agent's namespace.
|
533
536
|
nocache: bool, optional, DEPRECATED Please use `cache='f'`
|
534
537
|
simple flag to disable
|
535
538
|
[cache check](/docs/automation/helpers/cache/).
|
@@ -555,6 +558,7 @@ class RunClient:
|
|
555
558
|
matrix=matrix,
|
556
559
|
presets=presets,
|
557
560
|
queue=queue,
|
561
|
+
namespace=namespace,
|
558
562
|
nocache=nocache,
|
559
563
|
cache=cache,
|
560
564
|
approved=approved,
|
@@ -576,6 +580,7 @@ class RunClient:
|
|
576
580
|
matrix: Optional[Union[Dict, V1Matrix]] = None,
|
577
581
|
presets: Optional[List[str]] = None,
|
578
582
|
queue: Optional[str] = None,
|
583
|
+
namespace: Optional[str] = None,
|
579
584
|
nocache: Optional[bool] = None,
|
580
585
|
cache: Optional[Union[int, str, bool]] = None,
|
581
586
|
approved: Optional[Union[int, str, bool]] = None,
|
@@ -604,6 +609,8 @@ class RunClient:
|
|
604
609
|
[presets](/docs/core/scheduling-presets/).
|
605
610
|
queue: str, optional, the name of the
|
606
611
|
[queue](/docs/core/scheduling-strategies/queues/) to assign the run to.
|
612
|
+
namespace: str, optional, the namespace to create the run under, by default it will
|
613
|
+
use the agent's namespace.
|
607
614
|
nocache: bool, optional, DEPRECATED Please use `cache='f'`
|
608
615
|
simple flag to disable
|
609
616
|
[cache check](/docs/automation/helpers/cache/).
|
@@ -629,6 +636,7 @@ class RunClient:
|
|
629
636
|
matrix=matrix,
|
630
637
|
presets=presets,
|
631
638
|
queue=queue,
|
639
|
+
namespace=namespace,
|
632
640
|
nocache=nocache,
|
633
641
|
cache=cache,
|
634
642
|
approved=approved,
|
@@ -650,6 +658,7 @@ class RunClient:
|
|
650
658
|
matrix: Optional[Union[Dict, V1Matrix]] = None,
|
651
659
|
presets: Optional[List[str]] = None,
|
652
660
|
queue: Optional[str] = None,
|
661
|
+
namespace: Optional[str] = None,
|
653
662
|
nocache: Optional[bool] = None,
|
654
663
|
cache: Optional[Union[int, str, bool]] = None,
|
655
664
|
approved: Optional[Union[int, str, bool]] = None,
|
@@ -677,6 +686,8 @@ class RunClient:
|
|
677
686
|
[presets](/docs/core/scheduling-presets/).
|
678
687
|
queue: str, optional, the name of the
|
679
688
|
[queue](/docs/core/scheduling-strategies/queues/) to assign the run to.
|
689
|
+
namespace: str, optional, the namespace to create the run under, by default it will
|
690
|
+
use the agent's namespace.
|
680
691
|
nocache: bool, optional, DEPRECATED Please use `cache='f'`
|
681
692
|
simple flag to disable
|
682
693
|
[cache check](/docs/automation/helpers/cache/).
|
@@ -702,6 +713,7 @@ class RunClient:
|
|
702
713
|
matrix=matrix,
|
703
714
|
presets=presets,
|
704
715
|
queue=queue,
|
716
|
+
namespace=namespace,
|
705
717
|
nocache=nocache,
|
706
718
|
cache=cache,
|
707
719
|
approved=approved,
|
@@ -49,7 +49,7 @@ class AgentResolver(BaseSchemaModel):
|
|
49
49
|
|
50
50
|
self.polyaxon_sidecar = agent_config.sidecar or get_default_sidecar_container()
|
51
51
|
self.polyaxon_init = agent_config.init or get_default_init_container()
|
52
|
-
self.namespace = agent_config.namespace
|
52
|
+
self.namespace = compiled_operation.namespace or agent_config.namespace
|
53
53
|
|
54
54
|
def _resolve_run_connections(
|
55
55
|
self, compiled_operation: V1CompiledOperation, agent_config: AgentConfig
|
@@ -181,7 +181,7 @@ class BaseResolver:
|
|
181
181
|
)
|
182
182
|
self.polyaxon_sidecar = agent_env.polyaxon_sidecar
|
183
183
|
self.polyaxon_init = agent_env.polyaxon_init
|
184
|
-
self.namespace = agent_env.namespace
|
184
|
+
self.namespace = self.compiled_operation.namespace or agent_env.namespace
|
185
185
|
self.secrets = agent_env.secrets
|
186
186
|
self.config_maps = agent_env.config_maps
|
187
187
|
self.connection_by_names = agent_env.connection_by_names
|
@@ -12,6 +12,7 @@ class DeploymentService(BaseServiceConfig):
|
|
12
12
|
enabled: Optional[bool]
|
13
13
|
replicas: Optional[StrictInt]
|
14
14
|
concurrency: Optional[StrictInt]
|
15
|
+
per_core: Optional[bool] = Field(alias="perCore")
|
15
16
|
scheme: Optional[StrictStr]
|
16
17
|
|
17
18
|
|
@@ -22,6 +23,8 @@ class WorkerServiceConfig(DeploymentService):
|
|
22
23
|
class AgentServiceConfig(DeploymentService):
|
23
24
|
instance: Optional[StrictStr]
|
24
25
|
token: Optional[StrictStr]
|
26
|
+
watch_cluster: Optional[bool] = Field(alias="watchCluster")
|
27
|
+
additional_namespaces: Optional[List[str]] = Field(alias="additionalNamespaces")
|
25
28
|
is_replica: Optional[bool] = Field(alias="isReplica")
|
26
29
|
|
27
30
|
|
@@ -50,6 +53,7 @@ class HooksConfig(DeploymentService):
|
|
50
53
|
tables: Optional[bool] = Field(alias="tables")
|
51
54
|
sync_db: Optional[bool] = Field(alias="syncdb")
|
52
55
|
admin_user: Optional[bool] = Field(alias="adminUser")
|
56
|
+
default_org: Optional[bool] = Field(alias="defaultOrg")
|
53
57
|
|
54
58
|
|
55
59
|
class ThirdPartyService(DeploymentService):
|
@@ -35,6 +35,7 @@ class Executor(BaseExecutor):
|
|
35
35
|
run_uuid: str,
|
36
36
|
run_kind: str,
|
37
37
|
resource: List[docker_types.V1Container],
|
38
|
+
namespace: str = None,
|
38
39
|
) -> Dict:
|
39
40
|
logger.info(f"[Executor] Starting operation {run_uuid} {run_kind}.")
|
40
41
|
self._ops[run_uuid] = []
|
@@ -62,13 +63,15 @@ class Executor(BaseExecutor):
|
|
62
63
|
self._clean_temp_execution_path(run_uuid)
|
63
64
|
return {"status": V1Statuses.SUCCEEDED, "tasks": self._ops[run_uuid]}
|
64
65
|
|
65
|
-
def apply(
|
66
|
+
def apply(
|
67
|
+
self, run_uuid: str, run_kind: str, resource: Dict, namespace: str = None
|
68
|
+
) -> Dict:
|
66
69
|
raise PolyaxonAgentError(
|
67
70
|
"Docker executor does not support apply method.\n"
|
68
71
|
"Run: <kind: {}, uuid: {}>".format(run_kind, run_uuid)
|
69
72
|
)
|
70
73
|
|
71
|
-
def stop(self, run_uuid: str, run_kind: str):
|
74
|
+
def stop(self, run_uuid: str, run_kind: str, namespace: str = None):
|
72
75
|
proc = self._get_op_proc(run_uuid)
|
73
76
|
if proc.poll() is None:
|
74
77
|
# Kill the process tree rooted at the child if it's the leader of its own process
|
@@ -85,7 +88,7 @@ class Executor(BaseExecutor):
|
|
85
88
|
logger.debug(_msg)
|
86
89
|
proc.wait()
|
87
90
|
|
88
|
-
def clean(self, run_uuid: str, run_kind: str):
|
91
|
+
def clean(self, run_uuid: str, run_kind: str, namespace: str = None):
|
89
92
|
return self.apply(
|
90
93
|
run_uuid=run_uuid,
|
91
94
|
run_kind=run_kind,
|
@@ -100,6 +103,9 @@ class Executor(BaseExecutor):
|
|
100
103
|
return V1Statuses.SUCCEEDED
|
101
104
|
return V1Statuses.FAILED
|
102
105
|
|
103
|
-
def get(self, run_uuid: str, run_kind: str) -> V1Statuses:
|
106
|
+
def get(self, run_uuid: str, run_kind: str, namespace: str = None) -> V1Statuses:
|
104
107
|
procs = self._get_op_proc(run_uuid)
|
105
108
|
return self._get_task_status(procs[-1])
|
109
|
+
|
110
|
+
def list_ops(self, namespace: str = None):
|
111
|
+
return []
|
@@ -74,7 +74,10 @@ def get_run_info(run_instance: Optional[str] = None):
|
|
74
74
|
"Could not get run info, "
|
75
75
|
"please make sure this is run is correctly started by Polyaxon."
|
76
76
|
)
|
77
|
+
return get_run_info_from_instance(run_instance)
|
77
78
|
|
79
|
+
|
80
|
+
def get_run_info_from_instance(run_instance: str):
|
78
81
|
parts = run_instance.split(".")
|
79
82
|
if not len(parts) == 4:
|
80
83
|
raise PolyaxonClientException(
|
@@ -78,6 +78,9 @@ ENV_KEYS_AGENT_ARTIFACTS_STORE = "POLYAXON_AGENT_ARTIFACTS_STORE"
|
|
78
78
|
ENV_KEYS_AGENT_CONNECTIONS = "POLYAXON_AGENT_CONNECTIONS"
|
79
79
|
ENV_KEYS_SET_AGENT = "POLYAXON_SET_AGENT"
|
80
80
|
ENV_KEYS_K8S_APP_SECRET_NAME = "POLYAXON_K8S_APP_SECRET_NAME" # noqa
|
81
|
+
ENV_KEYS_WATCH_CLUSTER = "POLYAXON_WATCH_CLUSTER"
|
82
|
+
ENV_KEYS_SINGLE_NAMESPACE = "POLYAXON_SINGLE_NAMESPACE"
|
83
|
+
ENV_KEYS_ADDITIONAL_NAMESPACES = "POLYAXON_ADDITIONAL_NAMESPACES"
|
81
84
|
ENV_KEYS_AGENT_SECRET_NAME = "POLYAXON_AGENT_SECRET_NAME" # noqa
|
82
85
|
ENV_KEYS_AGENT_RUNS_SA = "POLYAXON_AGENT_RUNS_SA"
|
83
86
|
ENV_KEYS_AGENT_ENABLE_HEALTH_CHECKS = "POLYAXON_AGENT_ENABLE_HEALTH_CHECKS"
|
@@ -120,6 +123,8 @@ ENV_KEYS_PROXY_NAMESPACES = "POLYAXON_PROXY_NAMESPACES"
|
|
120
123
|
ENV_KEYS_PROXY_GATEWAY_PORT = "POLYAXON_PROXY_GATEWAY_PORT"
|
121
124
|
ENV_KEYS_PROXY_GATEWAY_TARGET_PORT = "POLYAXON_PROXY_GATEWAY_TARGET_PORT"
|
122
125
|
ENV_KEYS_PROXY_GATEWAY_HOST = "POLYAXON_PROXY_GATEWAY_HOST"
|
126
|
+
ENV_KEYS_PROXY_GATEWAY_CONCURRENCY = "POLYAXON_PROXY_GATEWAY_CONCURRENCY"
|
127
|
+
ENV_KEYS_PROXY_GATEWAY_PER_CORE = "POLYAXON_PROXY_GATEWAY_PER_CORE"
|
123
128
|
ENV_KEYS_PROXY_STREAMS_PORT = "POLYAXON_PROXY_STREAMS_PORT"
|
124
129
|
ENV_KEYS_PROXY_STREAMS_TARGET_PORT = "POLYAXON_PROXY_STREAMS_TARGET_PORT"
|
125
130
|
ENV_KEYS_PROXY_STREAMS_HOST = "POLYAXON_PROXY_STREAMS_HOST"
|
@@ -28,6 +28,7 @@ class V1Build(BaseSchemaModel):
|
|
28
28
|
hub_ref: str
|
29
29
|
connection: str
|
30
30
|
queue: str, optional
|
31
|
+
namespace: str, optional
|
31
32
|
presets: List[str], optional
|
32
33
|
cache: [V1Cache](/docs/automation/helpers/cache/), optional
|
33
34
|
params: Dict[str, [V1Param](/docs/core/specification/params/)], optional
|
@@ -94,6 +95,17 @@ class V1Build(BaseSchemaModel):
|
|
94
95
|
...
|
95
96
|
```
|
96
97
|
|
98
|
+
### presets
|
99
|
+
|
100
|
+
The [presets](/docs/management/organizations/presets/) to use for the hook operation,
|
101
|
+
if provided, it will override the component's presets otherwise
|
102
|
+
the presets of the component will be used if available.
|
103
|
+
|
104
|
+
```yaml
|
105
|
+
>>> build:
|
106
|
+
>>> presets: [test]
|
107
|
+
```
|
108
|
+
|
97
109
|
### queue
|
98
110
|
|
99
111
|
The [queue](/docs/core/scheduling-strategies/queues/) to use.
|
@@ -112,15 +124,15 @@ class V1Build(BaseSchemaModel):
|
|
112
124
|
>>> queue: queue-name
|
113
125
|
```
|
114
126
|
|
115
|
-
###
|
127
|
+
### namespace
|
116
128
|
|
117
|
-
|
118
|
-
|
119
|
-
|
129
|
+
> **Note**: Please note that this field is only available in some commercial editions.
|
130
|
+
|
131
|
+
The namespace to use, if not provided, it will default to the agent's namespace.
|
120
132
|
|
121
133
|
```yaml
|
122
134
|
>>> build:
|
123
|
-
>>>
|
135
|
+
>>> namespace: polyaxon
|
124
136
|
```
|
125
137
|
|
126
138
|
### cache
|
@@ -211,8 +223,9 @@ class V1Build(BaseSchemaModel):
|
|
211
223
|
_IDENTIFIER = "build"
|
212
224
|
hub_ref: StrictStr = Field(alias="hubRef")
|
213
225
|
connection: Optional[StrictStr]
|
214
|
-
queue: Optional[StrictStr]
|
215
226
|
presets: Optional[Union[List[StrictStr], RefField]]
|
227
|
+
queue: Optional[StrictStr]
|
228
|
+
namespace: Optional[StrictStr]
|
216
229
|
cache: Optional[Union[V1Cache, RefField]]
|
217
230
|
params: Optional[Dict[str, Union[V1Param, RefField]]]
|
218
231
|
run_patch: Optional[Dict[str, Any]] = Field(alias="runPatch")
|
@@ -20,6 +20,7 @@ class BaseComponent(BaseSchemaModel):
|
|
20
20
|
tags: Optional[List[StrictStr]]
|
21
21
|
presets: Optional[List[StrictStr]]
|
22
22
|
queue: Optional[StrictStr]
|
23
|
+
namespace: Optional[StrictStr]
|
23
24
|
cache: Optional[Union[V1Cache, RefField]]
|
24
25
|
termination: Optional[Union[V1Termination, RefField]]
|
25
26
|
plugins: Optional[Union[V1Plugins, RefField]]
|
@@ -39,6 +39,7 @@ class V1Component(
|
|
39
39
|
tags: List[str], optional
|
40
40
|
presets: List[str], optional
|
41
41
|
queue: str, optional
|
42
|
+
namespace: str, optional
|
42
43
|
cache: [V1Cache](/docs/automation/helpers/cache/), optional
|
43
44
|
termination: [V1Termination](/docs/core/specification/termination/), optional
|
44
45
|
plugins: [V1Plugins](/docs/core/specification/plugins/), optional
|
@@ -60,6 +61,7 @@ class V1Component(
|
|
60
61
|
>>> tags:
|
61
62
|
>>> presets:
|
62
63
|
>>> queue:
|
64
|
+
>>> namespace:
|
63
65
|
>>> cache:
|
64
66
|
>>> termination:
|
65
67
|
>>> plugins:
|
@@ -85,6 +87,7 @@ class V1Component(
|
|
85
87
|
>>> tags=["test"],
|
86
88
|
>>> presets=["test"],
|
87
89
|
>>> queue="test",
|
90
|
+
>>> namespace="test",
|
88
91
|
>>> cache=V1Cache(...),
|
89
92
|
>>> termination=V1Termination(...),
|
90
93
|
>>> plugins=V1Plugins(...),
|
@@ -197,6 +200,17 @@ class V1Component(
|
|
197
200
|
>>> queue: queue-name
|
198
201
|
```
|
199
202
|
|
203
|
+
### namespace
|
204
|
+
|
205
|
+
> **Note**: Please note that this field is only available in some commercial editions.
|
206
|
+
|
207
|
+
The namespace to use, if not provided, it will default to the agent's namespace.
|
208
|
+
|
209
|
+
```yaml
|
210
|
+
>>> component:
|
211
|
+
>>> namespace: polyaxon
|
212
|
+
```
|
213
|
+
|
200
214
|
### cache
|
201
215
|
|
202
216
|
The default component [cache](/docs/automation/helpers/cache/).
|
@@ -207,14 +207,14 @@ class V1Environment(BaseSchemaModel):
|
|
207
207
|
```yaml
|
208
208
|
>>> rules:
|
209
209
|
>>> - apiGroups: [""]
|
210
|
-
>>> resources: ["pods"]
|
210
|
+
>>> resources: ["pods", "services", "events", "pods/status", "pods/log"]
|
211
211
|
>>> verbs: ["get", "watch", "list"]
|
212
212
|
>>> - apiGroups: ["metrics.k8s.io"]
|
213
|
-
>>> resources: ["pods", "nodes"
|
213
|
+
>>> resources: ["pods", "nodes"]
|
214
214
|
>>> verbs: ["get", "list", "watch"]
|
215
|
-
>>> - apiGroups: [""
|
216
|
-
>>> resources: ["
|
217
|
-
>>> verbs: ["
|
215
|
+
>>> - apiGroups: ["core.polyaxon.com"]
|
216
|
+
>>> resources: ["operations"]
|
217
|
+
>>> verbs: ["get", "watch", "list"]
|
218
218
|
```
|
219
219
|
|
220
220
|
### hostAliases
|
@@ -49,6 +49,7 @@ class V1Hook(BaseSchemaModel):
|
|
49
49
|
hub_ref: str
|
50
50
|
conditions: str, optional
|
51
51
|
queue: str, optional
|
52
|
+
namespace: str, optional
|
52
53
|
presets: List[str], optional
|
53
54
|
disableDefaults: bool, optional
|
54
55
|
params: Dict[str, [V1Param](/docs/core/specification/params/)], optional
|
@@ -131,6 +132,17 @@ class V1Hook(BaseSchemaModel):
|
|
131
132
|
In the example above, the hook will only run if a param is passed, or an output is logged and
|
132
133
|
is equal to "some-value".
|
133
134
|
|
135
|
+
### presets
|
136
|
+
|
137
|
+
The [presets](/docs/management/organizations/presets/) to use for the hook operation,
|
138
|
+
if provided, it will override the component's presets otherwise
|
139
|
+
the presets of the component will be used if available.
|
140
|
+
|
141
|
+
```yaml
|
142
|
+
>>> hook:
|
143
|
+
>>> presets: [test]
|
144
|
+
```
|
145
|
+
|
134
146
|
### queue
|
135
147
|
|
136
148
|
The [queue](/docs/core/scheduling-strategies/queues/) to use.
|
@@ -149,15 +161,15 @@ class V1Hook(BaseSchemaModel):
|
|
149
161
|
>>> queue: queue-name
|
150
162
|
```
|
151
163
|
|
152
|
-
###
|
164
|
+
### namespace
|
153
165
|
|
154
|
-
|
155
|
-
|
156
|
-
|
166
|
+
> **Note**: Please note that this field is only available in some commercial editions.
|
167
|
+
|
168
|
+
The namespace to use, if not provided, it will default to the agent's namespace.
|
157
169
|
|
158
170
|
```yaml
|
159
171
|
>>> hook:
|
160
|
-
>>>
|
172
|
+
>>> namespace: polyaxon
|
161
173
|
```
|
162
174
|
|
163
175
|
### disableDefaults
|
@@ -199,8 +211,9 @@ class V1Hook(BaseSchemaModel):
|
|
199
211
|
connection: Optional[StrictStr]
|
200
212
|
trigger: Optional[V1Statuses]
|
201
213
|
conditions: Optional[StrictStr]
|
202
|
-
queue: Optional[StrictStr]
|
203
214
|
presets: Optional[List[StrictStr]]
|
215
|
+
queue: Optional[StrictStr]
|
216
|
+
namespace: Optional[StrictStr]
|
204
217
|
params: Optional[Union[Dict[str, V1Param], RefField]]
|
205
218
|
disable_defaults: Optional[BoolOrRef] = Field(alias="disableDefaults")
|
206
219
|
|
@@ -60,6 +60,17 @@ class V1Tuner(BaseSchemaModel):
|
|
60
60
|
...
|
61
61
|
```
|
62
62
|
|
63
|
+
### presets
|
64
|
+
|
65
|
+
The [presets](/docs/management/organizations/presets/) to use for the tuner operation,
|
66
|
+
if provided, it will override the component's presets otherwise
|
67
|
+
the presets of the component will be used if available.
|
68
|
+
|
69
|
+
```yaml
|
70
|
+
>>> tuner:
|
71
|
+
>>> presets: [test]
|
72
|
+
```
|
73
|
+
|
63
74
|
### queue
|
64
75
|
|
65
76
|
The [queue](/docs/core/scheduling-strategies/queues/) to use.
|
@@ -78,15 +89,15 @@ class V1Tuner(BaseSchemaModel):
|
|
78
89
|
>>> queue: queue-name
|
79
90
|
```
|
80
91
|
|
81
|
-
###
|
92
|
+
### namespace
|
82
93
|
|
83
|
-
|
84
|
-
|
85
|
-
|
94
|
+
> **Note**: Please note that this field is only available in some commercial editions.
|
95
|
+
|
96
|
+
The namespace to use, if not provided, it will default to the agent's namespace.
|
86
97
|
|
87
98
|
```yaml
|
88
99
|
>>> tuner:
|
89
|
-
>>>
|
100
|
+
>>> namespace: polyaxon
|
90
101
|
```
|
91
102
|
|
92
103
|
### params
|
@@ -108,6 +119,7 @@ class V1Tuner(BaseSchemaModel):
|
|
108
119
|
_IDENTIFIER = "tuner"
|
109
120
|
|
110
121
|
hub_ref: StrictStr = Field(alias="hubRef")
|
111
|
-
queue: Optional[StrictStr]
|
112
122
|
presets: Optional[Union[List[StrictStr], RefField]]
|
123
|
+
queue: Optional[StrictStr]
|
124
|
+
namespace: Optional[StrictStr]
|
113
125
|
params: Optional[Union[Dict[str, V1Param], RefField]]
|
@@ -45,6 +45,7 @@ class V1Operation(BaseOp, TemplateMixinConfig):
|
|
45
45
|
tags: List[str], optional
|
46
46
|
presets: str, optional
|
47
47
|
queue: str, optional
|
48
|
+
namespace: str, optional
|
48
49
|
cache: [V1Cache](/docs/automation/helpers/cache/), optional
|
49
50
|
termination: [V1Termination](/docs/core/specification/termination/), optional
|
50
51
|
plugins: [V1Plugins](/docs/core/specification/plugins/), optional
|
@@ -81,6 +82,7 @@ class V1Operation(BaseOp, TemplateMixinConfig):
|
|
81
82
|
>>> tags:
|
82
83
|
>>> presets:
|
83
84
|
>>> queue:
|
85
|
+
>>> namespace:
|
84
86
|
>>> cache:
|
85
87
|
>>> termination:
|
86
88
|
>>> plugins:
|
@@ -111,6 +113,7 @@ class V1Operation(BaseOp, TemplateMixinConfig):
|
|
111
113
|
>>> tags=["test"],
|
112
114
|
>>> presets=["test"],
|
113
115
|
>>> queue="test",
|
116
|
+
>>> namespace="test",
|
114
117
|
>>> cache=V1Cache(...),
|
115
118
|
>>> termination=V1Termination(...),
|
116
119
|
>>> plugins=V1Plugins(...),
|
@@ -248,6 +251,20 @@ class V1Operation(BaseOp, TemplateMixinConfig):
|
|
248
251
|
>>> queue: queue-name
|
249
252
|
```
|
250
253
|
|
254
|
+
### namespace
|
255
|
+
|
256
|
+
> **Note**: Please note that this field is only available in some commercial editions.
|
257
|
+
|
258
|
+
The namespace to use for this operation run,
|
259
|
+
if provided, it will override the component's namespace otherwise
|
260
|
+
the namesace of the component will be used if it exists or
|
261
|
+
it will default to the agent's namespace.
|
262
|
+
|
263
|
+
```yaml
|
264
|
+
>>> operation:
|
265
|
+
>>> namespace: polyaxon
|
266
|
+
```
|
267
|
+
|
251
268
|
### cache
|
252
269
|
|
253
270
|
The [cache](/docs/automation/helpers/cache/) to use for this operation run,
|
@@ -650,6 +667,7 @@ class V1Operation(BaseOp, TemplateMixinConfig):
|
|
650
667
|
hub_ref=hook.hub_ref,
|
651
668
|
presets=hook.presets,
|
652
669
|
queue=hook.queue,
|
670
|
+
namespace=hook.namespace,
|
653
671
|
params=params,
|
654
672
|
)
|
655
673
|
|
@@ -674,6 +692,7 @@ class V1Operation(BaseOp, TemplateMixinConfig):
|
|
674
692
|
hub_ref=build.hub_ref,
|
675
693
|
presets=build.presets,
|
676
694
|
queue=build.queue,
|
695
|
+
namespace=build.namespace,
|
677
696
|
cache=build.cache,
|
678
697
|
params=params,
|
679
698
|
)
|
@@ -17,8 +17,8 @@ from polyaxon._flow.run.job import V1Job
|
|
17
17
|
from polyaxon._flow.run.kubeflow.clean_pod_policy import V1CleanPodPolicy
|
18
18
|
from polyaxon._flow.run.kubeflow.mpi_job import V1MPIJob
|
19
19
|
from polyaxon._flow.run.kubeflow.mx_job import MXJobMode, V1MXJob
|
20
|
-
from polyaxon._flow.run.kubeflow.paddle_job import V1PaddleJob
|
21
|
-
from polyaxon._flow.run.kubeflow.pytorch_job import V1PytorchJob
|
20
|
+
from polyaxon._flow.run.kubeflow.paddle_job import V1PaddleElasticPolicy, V1PaddleJob
|
21
|
+
from polyaxon._flow.run.kubeflow.pytorch_job import V1PytorchElasticPolicy, V1PytorchJob
|
22
22
|
from polyaxon._flow.run.kubeflow.replica import V1KFReplica
|
23
23
|
from polyaxon._flow.run.kubeflow.scheduling_policy import V1SchedulingPolicy
|
24
24
|
from polyaxon._flow.run.kubeflow.tf_job import V1TFJob
|