├── .github ├── pull_request_template.md └── workflows │ ├── codebuild-ci.yml │ └── security-monitoring.yml ├── .gitignore ├── .gitmodules ├── .readthedocs.yaml ├── CHANGELOG.md ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── THIRD-PARTY ├── __init__.py ├── doc ├── Makefile ├── _static │ ├── custom.css │ ├── image.png │ ├── image_dark.png │ ├── image_light.svg │ └── search_accessories.css ├── advanced_resources.md ├── api │ └── metadata.rst ├── cli │ ├── cli_index.rst │ ├── cli_reference.md │ ├── cluster_management │ │ ├── cli_cluster_management.md │ │ └── cli_cluster_management_autogen.rst │ ├── inference │ │ └── cli_inference.md │ ├── space │ │ └── cli_space.md │ └── training │ │ └── cli_training.md ├── conf.py ├── examples.md ├── getting_started.md ├── getting_started │ ├── cluster_management.rst │ ├── inference.md │ └── training.md ├── index.md ├── installation.md ├── requirements.txt └── sdk │ ├── cluster_management │ └── hp_cluster_stack.rst │ ├── inference │ └── hp_endpoint.rst │ ├── metadata.rst │ ├── sdk_index.rst │ ├── space │ └── hyperpod_space.rst │ └── training │ └── hyperpod_pytorch_job.rst ├── examples ├── cluster_management │ ├── cluster_creation_init_experience.ipynb │ └── cluster_creation_sdk_experience.ipynb ├── inference │ ├── CLI │ │ ├── inference-fsx-model-e2e-cli.ipynb │ │ ├── inference-jumpstart-e2e-cli.ipynb │ │ ├── inference-jumpstart-init-experience.ipynb │ │ ├── inference-s3-model-e2e-cli.ipynb │ │ └── inference-s3-model-init-experience.ipynb │ └── SDK │ │ ├── inference-fsx-model-e2e.ipynb │ │ ├── inference-jumpstart-e2e.ipynb │ │ └── inference-s3-model-e2e.ipynb ├── observability │ └── observability.ipynb └── training │ ├── CLI │ ├── training-e2e-cli.ipynb │ └── training-init-experience.ipynb │ └── SDK │ └── training_sdk_example.ipynb ├── helm_chart ├── HyperPodHelmChart │ ├── .helmignore │ ├── Chart.yaml │ ├── charts │ │ ├── cluster-role-and-bindings │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ └── cluster-level-config.yaml │ │ │ └── values.yaml │ │ ├── deep-health-check │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── aws-hyperpod-namespace.yaml │ │ │ │ └── deep-health-check-rbac.yaml │ │ │ └── values.yaml │ │ ├── gpu-operator │ │ │ ├── Chart.yaml │ │ │ ├── config │ │ │ │ └── default-mig-config.yaml │ │ │ ├── regional-values │ │ │ │ ├── values-ap-northeast-1.yaml │ │ │ │ ├── values-ap-northeast-2.yaml │ │ │ │ ├── values-ap-south-1.yaml │ │ │ │ ├── values-ap-southeast-1.yaml │ │ │ │ ├── values-ap-southeast-2.yaml │ │ │ │ ├── values-ap-southeast-3.yaml │ │ │ │ ├── values-ap-southeast-4.yaml │ │ │ │ ├── values-ca-central-1.yaml │ │ │ │ ├── values-eu-central-1.yaml │ │ │ │ ├── values-eu-north-1.yaml │ │ │ │ ├── values-eu-south-2.yaml │ │ │ │ ├── values-eu-west-1.yaml │ │ │ │ ├── values-eu-west-2.yaml │ │ │ │ ├── values-sa-east-1.yaml │ │ │ │ ├── values-us-east-1.yaml │ │ │ │ ├── values-us-east-2.yaml │ │ │ │ ├── values-us-west-1.yaml │ │ │ │ └── values-us-west-2.yaml │ │ │ ├── templates │ │ │ │ └── mig-config.yaml │ │ │ └── values.yaml │ │ ├── health-monitoring-agent-0.1.0.tgz │ │ ├── health-monitoring-agent │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── _helpers.tpl │ │ │ │ └── health-monitoring-agent.yaml │ │ │ └── values.yaml │ │ ├── hyperpod-patching │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── clusterrolebinding.yaml │ │ │ └── values.yaml │ │ ├── inference-operator │ │ │ ├── Chart.lock │ │ │ ├── Chart.yaml │ │ │ ├── config │ │ │ │ ├── crd │ │ │ │ │ ├── inference.sagemaker.aws.amazon.com_inferenceendpointconfigs.yaml │ │ │ │ │ ├── inference.sagemaker.aws.amazon.com_jumpstartmodels.yaml │ │ │ │ │ └── inference.sagemaker.aws.amazon.com_sagemakerendpointregistrations.yaml │ │ │ │ ├── manager │ │ │ │ │ └── manager.yaml │ │ │ │ ├── metrics │ │ │ │ │ └── metrics_service.yaml │ │ │ │ ├── network-policy │ │ │ │ │ ├── allow-metrics-traffic.yaml │ │ │ │ │ └── allow-webhook-traffic.yaml │ │ │ │ ├── prometheus │ │ │ │ │ └── monitor.yaml │ │ │ │ ├── rbac │ │ │ │ │ ├── inferenceendpointconfig_editor_role.yaml │ │ │ │ │ ├── inferenceendpointconfig_viewer_role.yaml │ │ │ │ │ ├── jumpstartmodel_editor_role.yaml │ │ │ │ │ ├── jumpstartmodel_viewer_role.yaml │ │ │ │ │ ├── leader_election_role.yaml │ │ │ │ │ ├── leader_election_role_binding.yaml │ │ │ │ │ ├── metrics_auth_role.yaml │ │ │ │ │ ├── metrics_auth_role_binding.yaml │ │ │ │ │ ├── metrics_reader_role.yaml │ │ │ │ │ ├── pod_reader_cluster_role.yaml │ │ │ │ │ ├── pod_reader_cluster_role_binding.yaml │ │ │ │ │ ├── pod_reader_service_account.yaml │ │ │ │ │ ├── role.yaml │ │ │ │ │ ├── role_binding.yaml │ │ │ │ │ ├── sagemakerendpointregistration_editor_role.yaml │ │ │ │ │ ├── sagemakerendpointregistration_viewer_role.yaml │ │ │ │ │ └── service_account.yaml │ │ │ │ ├── samples │ │ │ │ │ ├── v1_deepseek_model15b.yaml │ │ │ │ │ ├── v1_llama31_8b_intelligent_routing.yaml │ │ │ │ │ ├── v1_llama31_8b_kv_cache_l1_l2.yaml │ │ │ │ │ ├── v1_modeldeployment.yaml │ │ │ │ │ ├── v1_s3_deepseek15b.yaml │ │ │ │ │ └── v1_s3_modeldeployment.yaml │ │ │ │ └── webhook │ │ │ │ │ ├── certificate-webhook.yaml │ │ │ │ │ ├── issuer.yaml │ │ │ │ │ └── service.yaml │ │ │ ├── templates │ │ │ │ ├── _validateRequiredValues.tpl │ │ │ │ ├── default.yaml │ │ │ │ ├── s3_persistent_volume.yaml │ │ │ │ └── s3_persistent_volume_claim.yaml │ │ │ └── values.yaml │ │ ├── job-auto-restart │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ └── job-auto-restart-rbac.yaml │ │ │ └── values.yaml │ │ ├── mlflow │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ └── service-account.yaml │ │ │ └── values.yaml │ │ ├── mpi-operator │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── mpijob-crd.yaml │ │ │ │ └── rbac.yaml │ │ │ └── values.yaml │ │ ├── namespaced-role-and-bindings │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ └── namespace-level-role.yaml │ │ │ └── values.yaml │ │ ├── neuron-device-plugin │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── k8s-neuron-device-plugin-rbac.yaml │ │ │ │ └── k8s-neuron-device-plugin.yaml │ │ │ └── values.yaml │ │ ├── storage │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── persistent-volume-claim.yaml │ │ │ │ └── persistent-volume.yaml │ │ │ └── values.yaml │ │ ├── team-role-and-bindings │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── team-level-cluster-role.yaml │ │ │ │ └── team-level-namespaced-role.yaml │ │ │ └── values.yaml │ │ └── training-operators │ │ │ ├── Chart.yaml │ │ │ ├── crds │ │ │ ├── mxjobs.kubeflow.org-CustomResourceDefinition.yaml │ │ │ ├── paddlejobs.kubeflow.org-CustomResourceDefinition.yaml │ │ │ ├── pytorchjobs.kubeflow.org-CustomResourceDefinition.yaml │ │ │ ├── tfjobs.kubeflow.org-CustomResourceDefinition.yaml │ │ │ └── xgboostjobs.kubeflow.org-CustomResourceDefinition.yaml │ │ │ ├── templates │ │ │ ├── ClusterRole │ │ │ │ ├── kubeflow-training-admin-ClusterRole.yaml │ │ │ │ ├── kubeflow-training-edit-ClusterRole.yaml │ │ │ │ ├── kubeflow-training-view-ClusterRole.yaml │ │ │ │ └── training-operator-ClusterRole.yaml │ │ │ ├── ClusterRoleBinding │ │ │ │ └── training-operator-ClusterRoleBinding.yaml │ │ │ ├── Deployment │ │ │ │ └── training-operator-kubeflow-Deployment.yaml │ │ │ ├── Service │ │ │ │ └── training-operator-kubeflow-Service.yaml │ │ │ ├── ServiceAccount │ │ │ │ └── training-operator-kubeflow-ServiceAccount.yaml │ │ │ ├── _helpers.tpl │ │ │ └── kubeflow-namespace.yaml │ │ │ └── values.yaml │ ├── regional-values │ │ ├── values-ap-northeast-1.yaml │ │ ├── values-ap-northeast-2.yaml │ │ ├── values-ap-south-1.yaml │ │ ├── values-ap-southeast-1.yaml │ │ ├── values-ap-southeast-2.yaml │ │ ├── values-ap-southeast-3.yaml │ │ ├── values-ap-southeast-4.yaml │ │ ├── values-ca-central-1.yaml │ │ ├── values-eu-central-1.yaml │ │ ├── values-eu-north-1.yaml │ │ ├── values-eu-south-2.yaml │ │ ├── values-eu-west-1.yaml │ │ ├── values-eu-west-2.yaml │ │ ├── values-sa-east-1.yaml │ │ ├── values-us-east-1.yaml │ │ ├── values-us-east-2.yaml │ │ ├── values-us-west-1.yaml │ │ └── values-us-west-2.yaml │ └── values.yaml ├── get_helm.sh ├── install_dependencies.sh └── readme.md ├── hyperpod-cluster-stack-template ├── CHANGELOG.md ├── README.md ├── hyperpod_cluster_stack_template │ ├── __init__.py │ ├── creation_template.yaml │ ├── registry.py │ └── v1_0 │ │ ├── __init__.py │ │ ├── model.py │ │ ├── schema.json │ │ └── template.py └── pyproject.toml ├── hyperpod-custom-inference-template ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── hyperpod_custom_inference_template │ ├── __init__.py │ ├── registry.py │ ├── v1_0 │ │ ├── __init__.py │ │ ├── model.py │ │ ├── schema.json │ │ └── template.py │ └── v1_1 │ │ ├── __init__.py │ │ ├── model.py │ │ ├── schema.json │ │ └── template.py └── pyproject.toml ├── hyperpod-jumpstart-inference-template ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── hyperpod_jumpstart_inference_template │ ├── __init__.py │ ├── registry.py │ ├── v1_0 │ │ ├── __init__.py │ │ ├── model.py │ │ ├── schema.json │ │ └── template.py │ └── v1_1 │ │ ├── __init__.py │ │ ├── model.py │ │ ├── schema.json │ │ └── template.py └── pyproject.toml ├── hyperpod-pytorch-job-template ├── CHANGELOG.md ├── CODEOWNERS ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── hyperpod_pytorch_job_template │ ├── __init__.py │ ├── registry.py │ ├── v1_0 │ │ ├── __init__.py │ │ ├── model.py │ │ ├── schema.json │ │ └── template.py │ └── v1_1 │ │ ├── __init__.py │ │ ├── model.py │ │ ├── schema.json │ │ └── template.py └── pyproject.toml ├── hyperpod-space-template ├── CHANGELOG.md ├── hyperpod_space_template │ ├── __init__.py │ ├── registry.py │ └── v1_0 │ │ ├── __init__.py │ │ ├── model.py │ │ └── schema.json ├── pyproject.toml └── update_schema.py ├── pyproject.toml ├── setup.cfg ├── setup.py ├── src └── sagemaker │ ├── __init__.py │ └── hyperpod │ ├── __init__.py │ ├── cli │ ├── __init__.py │ ├── clients │ │ ├── __init__.py │ │ └── kubernetes_client.py │ ├── cluster_stack_utils.py │ ├── cluster_utils.py │ ├── commands │ │ ├── __init__.py │ │ ├── cluster.py │ │ ├── cluster_stack.py │ │ ├── inference.py │ │ ├── init.py │ │ ├── space.py │ │ ├── space_access.py │ │ ├── space_template.py │ │ └── training.py │ ├── common_utils.py │ ├── constants │ │ ├── __init__.py │ │ ├── command_constants.py │ │ ├── exception_constants.py │ │ ├── hyperpod_instance_types.py │ │ ├── init_constants.py │ │ ├── kueue_constants.py │ │ ├── pytorch_constants.py │ │ ├── space_access_constants.py │ │ ├── space_constants.py │ │ └── space_template_constants.py │ ├── hyp_cli.py │ ├── inference_utils.py │ ├── init_utils.py │ ├── service │ │ ├── __init__.py │ │ ├── cancel_training_job.py │ │ ├── discover_namespaces.py │ │ ├── exec_command.py │ │ ├── get_logs.py │ │ ├── get_namespaces.py │ │ ├── get_training_job.py │ │ ├── list_pods.py │ │ ├── list_training_jobs.py │ │ └── self_subject_access_review.py │ ├── space_utils.py │ ├── templates │ │ └── __init__.py │ ├── training_utils.py │ ├── type_handler_utils.py │ ├── utils.py │ └── validators │ │ ├── __init__.py │ │ ├── cluster_validator.py │ │ ├── job_validator.py │ │ └── validator.py │ ├── cluster_management │ ├── __init__.py │ ├── config │ │ ├── __init__.py │ │ └── hp_cluster_stack_config.py │ └── hp_cluster_stack.py │ ├── common │ ├── __init__.py │ ├── cli_decorators.py │ ├── config │ │ ├── __init__.py │ │ └── metadata.py │ ├── exceptions │ │ └── __init__.py │ ├── telemetry │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── telemetry_logging.py │ │ └── user_agent.py │ └── utils.py │ ├── inference │ ├── __init__.py │ ├── config │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── hp_endpoint_config.py │ │ └── hp_jumpstart_endpoint_config.py │ ├── constant.py │ ├── hp_endpoint.py │ ├── hp_endpoint_base.py │ ├── hp_jumpstart_endpoint.py │ └── jumpstart_public_hub_visualization_utils.py │ ├── observability │ ├── MonitoringConfig.py │ ├── __init__.py │ ├── constants.py │ └── utils.py │ ├── space │ ├── __init__.py │ ├── hyperpod_space.py │ ├── hyperpod_space_template.py │ └── utils.py │ └── training │ ├── __init__.py │ ├── accelerator_partition_util.py │ ├── config │ ├── __init__.py │ └── hyperpod_pytorch_job_unified_config.py │ ├── constants.py │ ├── hyperpod_pytorch_job.py │ └── quota_allocation_util.py ├── test ├── __init__.py ├── conftest.py ├── integration_tests │ ├── __init__.py │ ├── cluster_management │ │ ├── __init__.py │ │ ├── test_cli_cluster_stack_deletion.py │ │ ├── test_hp_cluster_creation.py │ │ ├── test_hp_cluster_stack.py │ │ ├── test_sdk_cluster_stack_deletion.py │ │ └── utils.py │ ├── inference │ │ ├── cli │ │ │ ├── test_cli_custom_fsx_inference.py │ │ │ ├── test_cli_custom_s3_inference.py │ │ │ ├── test_cli_jumpstart_inference.py │ │ │ └── test_cli_jumpstart_inference_with_mig.py │ │ └── sdk │ │ │ ├── test_sdk_custom_fsx_inference.py │ │ │ ├── test_sdk_custom_s3_inference.py │ │ │ ├── test_sdk_jumpstart_inference.py │ │ │ └── test_sdk_jumpstart_inference_with_mig.py │ ├── init │ │ ├── test_custom_creation.py │ │ ├── test_init_workflow.py │ │ ├── test_jumpstart_creation.py │ │ ├── test_pytorch_job_creation.py │ │ └── utils.py │ ├── space │ │ ├── cli │ │ │ ├── test_cli_space.py │ │ │ └── test_cli_space_template.py │ │ └── sdk │ │ │ ├── test_sdk_space.py │ │ │ └── test_sdk_space_template.py │ ├── training │ │ ├── cli │ │ │ ├── test_accelerator_partition.py │ │ │ ├── test_cli_elastic_training.py │ │ │ ├── test_cli_training.py │ │ │ ├── test_gpu_quota_allocation.py │ │ │ └── test_topology.py │ │ └── sdk │ │ │ ├── test_sdk_quota_allocation.py │ │ │ ├── test_sdk_resource_processing.py │ │ │ └── test_sdk_training.py │ └── utils.py └── unit_tests │ ├── __init__.py │ ├── cli │ ├── __init__.py │ ├── test_accelerator_partition_util.py │ ├── test_cli.py │ ├── test_cluster_stack.py │ ├── test_cluster_stack_utils.py │ ├── test_cluster_utils.py │ ├── test_common_utils.py │ ├── test_delete_cluster_stack.py │ ├── test_inference.py │ ├── test_inference_utils.py │ ├── test_init.py │ ├── test_init_utils.py │ ├── test_quota_allocation_util.py │ ├── test_save_template.py │ ├── test_space.py │ ├── test_space_access.py │ ├── test_space_template.py │ ├── test_space_utils.py │ ├── test_training.py │ └── test_training_utils.py │ ├── clients │ └── test_kubernetes_client.py │ ├── cluster_management │ ├── __init__.py │ └── test_hp_cluster_stack.py │ ├── common │ ├── __init__.py │ ├── telemetry │ │ ├── __init__.py │ │ └── test_telemetry_logging.py │ └── test_utils.py │ ├── error_handling │ ├── __init__.py │ ├── run_comprehensive_404_unit_tests.py │ └── test_cli_decorators.py │ ├── inference │ ├── __init__.py │ ├── test_hp_endpoint.py │ ├── test_hp_endpoint_base.py │ └── test_hp_jumpstart_endpoint.py │ ├── service │ ├── test_cancel_training_job_service.py │ ├── test_discover_namespaces.py │ ├── test_exec_command_service.py │ ├── test_get_logs_service.py │ ├── test_get_namespaces.py │ ├── test_get_training_job_service.py │ ├── test_list_pods_service.py │ ├── test_list_training_jobs_service.py │ └── test_self_subject_access_review.py │ ├── test_cluster.py │ ├── test_cluster_timeout.py │ ├── test_describe_cluster.py │ ├── test_hyperpod_cli.py │ ├── test_hyperpod_space.py │ ├── test_hyperpod_space_template.py │ ├── test_space_utils.py │ ├── test_utils.py │ ├── training │ ├── __init__.py │ ├── test_hyperpod_pytorch_job.py │ └── test_pytorch_job_template_model.py │ └── validators │ ├── test_cluster_validatory.py │ ├── test_job_validator.py │ └── test_validator.py └── tox.ini /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/codebuild-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/.github/workflows/codebuild-ci.yml -------------------------------------------------------------------------------- /.github/workflows/security-monitoring.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/.github/workflows/security-monitoring.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/.gitmodules -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @aws/sagemaker-hyperpod-cli 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/README.md -------------------------------------------------------------------------------- /THIRD-PARTY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/THIRD-PARTY -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/doc/_static/custom.css -------------------------------------------------------------------------------- /doc/_static/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/doc/_static/image.png -------------------------------------------------------------------------------- /doc/_static/image_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/doc/_static/image_dark.png -------------------------------------------------------------------------------- /doc/_static/image_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/doc/_static/image_light.svg -------------------------------------------------------------------------------- /doc/_static/search_accessories.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/doc/_static/search_accessories.css -------------------------------------------------------------------------------- /doc/advanced_resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/doc/advanced_resources.md -------------------------------------------------------------------------------- /doc/api/metadata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/doc/api/metadata.rst -------------------------------------------------------------------------------- /doc/cli/cli_index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/doc/cli/cli_index.rst -------------------------------------------------------------------------------- /doc/cli/cli_reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/doc/cli/cli_reference.md -------------------------------------------------------------------------------- /doc/cli/cluster_management/cli_cluster_management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/doc/cli/cluster_management/cli_cluster_management.md -------------------------------------------------------------------------------- /doc/cli/cluster_management/cli_cluster_management_autogen.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/doc/cli/cluster_management/cli_cluster_management_autogen.rst -------------------------------------------------------------------------------- /doc/cli/inference/cli_inference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/doc/cli/inference/cli_inference.md -------------------------------------------------------------------------------- /doc/cli/space/cli_space.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/doc/cli/space/cli_space.md -------------------------------------------------------------------------------- /doc/cli/training/cli_training.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/doc/cli/training/cli_training.md -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/doc/examples.md -------------------------------------------------------------------------------- /doc/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/doc/getting_started.md -------------------------------------------------------------------------------- /doc/getting_started/cluster_management.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/doc/getting_started/cluster_management.rst -------------------------------------------------------------------------------- /doc/getting_started/inference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/doc/getting_started/inference.md -------------------------------------------------------------------------------- /doc/getting_started/training.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/doc/getting_started/training.md -------------------------------------------------------------------------------- /doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/doc/index.md -------------------------------------------------------------------------------- /doc/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/doc/installation.md -------------------------------------------------------------------------------- /doc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/doc/requirements.txt -------------------------------------------------------------------------------- /doc/sdk/cluster_management/hp_cluster_stack.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/doc/sdk/cluster_management/hp_cluster_stack.rst -------------------------------------------------------------------------------- /doc/sdk/inference/hp_endpoint.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/doc/sdk/inference/hp_endpoint.rst -------------------------------------------------------------------------------- /doc/sdk/metadata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/doc/sdk/metadata.rst -------------------------------------------------------------------------------- /doc/sdk/sdk_index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/doc/sdk/sdk_index.rst -------------------------------------------------------------------------------- /doc/sdk/space/hyperpod_space.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/doc/sdk/space/hyperpod_space.rst -------------------------------------------------------------------------------- /doc/sdk/training/hyperpod_pytorch_job.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/doc/sdk/training/hyperpod_pytorch_job.rst -------------------------------------------------------------------------------- /examples/cluster_management/cluster_creation_init_experience.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/examples/cluster_management/cluster_creation_init_experience.ipynb -------------------------------------------------------------------------------- /examples/cluster_management/cluster_creation_sdk_experience.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/examples/cluster_management/cluster_creation_sdk_experience.ipynb -------------------------------------------------------------------------------- /examples/inference/CLI/inference-fsx-model-e2e-cli.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/examples/inference/CLI/inference-fsx-model-e2e-cli.ipynb -------------------------------------------------------------------------------- /examples/inference/CLI/inference-jumpstart-e2e-cli.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/examples/inference/CLI/inference-jumpstart-e2e-cli.ipynb -------------------------------------------------------------------------------- /examples/inference/CLI/inference-jumpstart-init-experience.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/examples/inference/CLI/inference-jumpstart-init-experience.ipynb -------------------------------------------------------------------------------- /examples/inference/CLI/inference-s3-model-e2e-cli.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/examples/inference/CLI/inference-s3-model-e2e-cli.ipynb -------------------------------------------------------------------------------- /examples/inference/CLI/inference-s3-model-init-experience.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/examples/inference/CLI/inference-s3-model-init-experience.ipynb -------------------------------------------------------------------------------- /examples/inference/SDK/inference-fsx-model-e2e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/examples/inference/SDK/inference-fsx-model-e2e.ipynb -------------------------------------------------------------------------------- /examples/inference/SDK/inference-jumpstart-e2e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/examples/inference/SDK/inference-jumpstart-e2e.ipynb -------------------------------------------------------------------------------- /examples/inference/SDK/inference-s3-model-e2e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/examples/inference/SDK/inference-s3-model-e2e.ipynb -------------------------------------------------------------------------------- /examples/observability/observability.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/examples/observability/observability.ipynb -------------------------------------------------------------------------------- /examples/training/CLI/training-e2e-cli.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/examples/training/CLI/training-e2e-cli.ipynb -------------------------------------------------------------------------------- /examples/training/CLI/training-init-experience.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/examples/training/CLI/training-init-experience.ipynb -------------------------------------------------------------------------------- /examples/training/SDK/training_sdk_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/examples/training/SDK/training_sdk_example.ipynb -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/.helmignore -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/Chart.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/cluster-role-and-bindings/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/cluster-role-and-bindings/Chart.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/cluster-role-and-bindings/templates/cluster-level-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/cluster-role-and-bindings/templates/cluster-level-config.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/cluster-role-and-bindings/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/cluster-role-and-bindings/values.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/deep-health-check/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/deep-health-check/Chart.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/deep-health-check/templates/aws-hyperpod-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/deep-health-check/templates/aws-hyperpod-namespace.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/deep-health-check/templates/deep-health-check-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/deep-health-check/templates/deep-health-check-rbac.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/deep-health-check/values.yaml: -------------------------------------------------------------------------------- 1 | namespace: "aws-hyperpod" 2 | -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/gpu-operator/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/gpu-operator/Chart.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/gpu-operator/config/default-mig-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/gpu-operator/config/default-mig-config.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/gpu-operator/regional-values/values-ap-northeast-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/gpu-operator/regional-values/values-ap-northeast-1.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/gpu-operator/regional-values/values-ap-northeast-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/gpu-operator/regional-values/values-ap-northeast-2.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/gpu-operator/regional-values/values-ap-south-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/gpu-operator/regional-values/values-ap-south-1.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/gpu-operator/regional-values/values-ap-southeast-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/gpu-operator/regional-values/values-ap-southeast-1.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/gpu-operator/regional-values/values-ap-southeast-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/gpu-operator/regional-values/values-ap-southeast-2.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/gpu-operator/regional-values/values-ap-southeast-3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/gpu-operator/regional-values/values-ap-southeast-3.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/gpu-operator/regional-values/values-ap-southeast-4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/gpu-operator/regional-values/values-ap-southeast-4.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/gpu-operator/regional-values/values-ca-central-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/gpu-operator/regional-values/values-ca-central-1.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/gpu-operator/regional-values/values-eu-central-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/gpu-operator/regional-values/values-eu-central-1.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/gpu-operator/regional-values/values-eu-north-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/gpu-operator/regional-values/values-eu-north-1.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/gpu-operator/regional-values/values-eu-south-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/gpu-operator/regional-values/values-eu-south-2.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/gpu-operator/regional-values/values-eu-west-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/gpu-operator/regional-values/values-eu-west-1.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/gpu-operator/regional-values/values-eu-west-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/gpu-operator/regional-values/values-eu-west-2.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/gpu-operator/regional-values/values-sa-east-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/gpu-operator/regional-values/values-sa-east-1.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/gpu-operator/regional-values/values-us-east-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/gpu-operator/regional-values/values-us-east-1.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/gpu-operator/regional-values/values-us-east-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/gpu-operator/regional-values/values-us-east-2.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/gpu-operator/regional-values/values-us-west-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/gpu-operator/regional-values/values-us-west-1.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/gpu-operator/regional-values/values-us-west-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/gpu-operator/regional-values/values-us-west-2.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/gpu-operator/templates/mig-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/gpu-operator/templates/mig-config.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/gpu-operator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/gpu-operator/values.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/health-monitoring-agent-0.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/health-monitoring-agent-0.1.0.tgz -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/health-monitoring-agent/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/health-monitoring-agent/Chart.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/health-monitoring-agent/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/health-monitoring-agent/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/health-monitoring-agent/templates/health-monitoring-agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/health-monitoring-agent/templates/health-monitoring-agent.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/health-monitoring-agent/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/health-monitoring-agent/values.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/hyperpod-patching/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/hyperpod-patching/Chart.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/hyperpod-patching/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/hyperpod-patching/templates/clusterrole.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/hyperpod-patching/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/hyperpod-patching/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/hyperpod-patching/values.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/inference-operator/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/inference-operator/Chart.lock -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/inference-operator/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/inference-operator/Chart.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/inference-operator/config/crd/inference.sagemaker.aws.amazon.com_inferenceendpointconfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/inference-operator/config/crd/inference.sagemaker.aws.amazon.com_inferenceendpointconfigs.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/inference-operator/config/crd/inference.sagemaker.aws.amazon.com_jumpstartmodels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/inference-operator/config/crd/inference.sagemaker.aws.amazon.com_jumpstartmodels.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/inference-operator/config/crd/inference.sagemaker.aws.amazon.com_sagemakerendpointregistrations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/inference-operator/config/crd/inference.sagemaker.aws.amazon.com_sagemakerendpointregistrations.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/inference-operator/config/manager/manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/inference-operator/config/manager/manager.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/inference-operator/config/metrics/metrics_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/inference-operator/config/metrics/metrics_service.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/inference-operator/config/network-policy/allow-metrics-traffic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/inference-operator/config/network-policy/allow-metrics-traffic.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/inference-operator/config/network-policy/allow-webhook-traffic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/inference-operator/config/network-policy/allow-webhook-traffic.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/inference-operator/config/prometheus/monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/inference-operator/config/prometheus/monitor.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/inference-operator/config/rbac/inferenceendpointconfig_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/inference-operator/config/rbac/inferenceendpointconfig_editor_role.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/inference-operator/config/rbac/inferenceendpointconfig_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/inference-operator/config/rbac/inferenceendpointconfig_viewer_role.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/inference-operator/config/rbac/jumpstartmodel_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/inference-operator/config/rbac/jumpstartmodel_editor_role.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/inference-operator/config/rbac/jumpstartmodel_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/inference-operator/config/rbac/jumpstartmodel_viewer_role.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/inference-operator/config/rbac/leader_election_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/inference-operator/config/rbac/leader_election_role.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/inference-operator/config/rbac/leader_election_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/inference-operator/config/rbac/leader_election_role_binding.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/inference-operator/config/rbac/metrics_auth_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/inference-operator/config/rbac/metrics_auth_role.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/inference-operator/config/rbac/metrics_auth_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/inference-operator/config/rbac/metrics_auth_role_binding.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/inference-operator/config/rbac/metrics_reader_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/inference-operator/config/rbac/metrics_reader_role.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/inference-operator/config/rbac/pod_reader_cluster_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/inference-operator/config/rbac/pod_reader_cluster_role.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/inference-operator/config/rbac/pod_reader_cluster_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/inference-operator/config/rbac/pod_reader_cluster_role_binding.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/inference-operator/config/rbac/pod_reader_service_account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/inference-operator/config/rbac/pod_reader_service_account.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/inference-operator/config/rbac/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/inference-operator/config/rbac/role.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/inference-operator/config/rbac/role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/inference-operator/config/rbac/role_binding.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/inference-operator/config/rbac/sagemakerendpointregistration_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/inference-operator/config/rbac/sagemakerendpointregistration_editor_role.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/inference-operator/config/rbac/sagemakerendpointregistration_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/inference-operator/config/rbac/sagemakerendpointregistration_viewer_role.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/inference-operator/config/rbac/service_account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/inference-operator/config/rbac/service_account.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/inference-operator/config/samples/v1_deepseek_model15b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/inference-operator/config/samples/v1_deepseek_model15b.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/inference-operator/config/samples/v1_llama31_8b_intelligent_routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/inference-operator/config/samples/v1_llama31_8b_intelligent_routing.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/inference-operator/config/samples/v1_llama31_8b_kv_cache_l1_l2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/inference-operator/config/samples/v1_llama31_8b_kv_cache_l1_l2.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/inference-operator/config/samples/v1_modeldeployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/inference-operator/config/samples/v1_modeldeployment.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/inference-operator/config/samples/v1_s3_deepseek15b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/inference-operator/config/samples/v1_s3_deepseek15b.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/inference-operator/config/samples/v1_s3_modeldeployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/inference-operator/config/samples/v1_s3_modeldeployment.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/inference-operator/config/webhook/certificate-webhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/inference-operator/config/webhook/certificate-webhook.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/inference-operator/config/webhook/issuer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/inference-operator/config/webhook/issuer.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/inference-operator/config/webhook/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/inference-operator/config/webhook/service.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/inference-operator/templates/_validateRequiredValues.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/inference-operator/templates/_validateRequiredValues.tpl -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/inference-operator/templates/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/inference-operator/templates/default.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/inference-operator/templates/s3_persistent_volume.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/inference-operator/templates/s3_persistent_volume.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/inference-operator/templates/s3_persistent_volume_claim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/inference-operator/templates/s3_persistent_volume_claim.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/inference-operator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/inference-operator/values.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/job-auto-restart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/job-auto-restart/Chart.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/job-auto-restart/templates/job-auto-restart-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/job-auto-restart/templates/job-auto-restart-rbac.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/job-auto-restart/values.yaml: -------------------------------------------------------------------------------- 1 | namespace: "aws-hyperpod" -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/mlflow/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/mlflow/Chart.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/mlflow/templates/service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/mlflow/templates/service-account.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/mlflow/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/mlflow/values.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/mpi-operator/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/mpi-operator/Chart.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/mpi-operator/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/mpi-operator/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/mpi-operator/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/mpi-operator/templates/deployment.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/mpi-operator/templates/mpijob-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/mpi-operator/templates/mpijob-crd.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/mpi-operator/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/mpi-operator/templates/rbac.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/mpi-operator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/mpi-operator/values.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/namespaced-role-and-bindings/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/namespaced-role-and-bindings/Chart.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/namespaced-role-and-bindings/templates/namespace-level-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/namespaced-role-and-bindings/templates/namespace-level-role.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/namespaced-role-and-bindings/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/namespaced-role-and-bindings/values.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/neuron-device-plugin/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/neuron-device-plugin/Chart.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/neuron-device-plugin/templates/k8s-neuron-device-plugin-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/neuron-device-plugin/templates/k8s-neuron-device-plugin-rbac.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/neuron-device-plugin/templates/k8s-neuron-device-plugin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/neuron-device-plugin/templates/k8s-neuron-device-plugin.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/neuron-device-plugin/values.yaml: -------------------------------------------------------------------------------- 1 | namespace: "kube-system" -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/storage/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/storage/Chart.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/storage/templates/persistent-volume-claim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/storage/templates/persistent-volume-claim.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/storage/templates/persistent-volume.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/storage/templates/persistent-volume.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/storage/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/storage/values.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/team-role-and-bindings/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/team-role-and-bindings/Chart.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/team-role-and-bindings/templates/team-level-cluster-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/team-role-and-bindings/templates/team-level-cluster-role.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/team-role-and-bindings/templates/team-level-namespaced-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/team-role-and-bindings/templates/team-level-namespaced-role.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/team-role-and-bindings/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/team-role-and-bindings/values.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/training-operators/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/training-operators/Chart.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/training-operators/crds/mxjobs.kubeflow.org-CustomResourceDefinition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/training-operators/crds/mxjobs.kubeflow.org-CustomResourceDefinition.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/training-operators/crds/paddlejobs.kubeflow.org-CustomResourceDefinition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/training-operators/crds/paddlejobs.kubeflow.org-CustomResourceDefinition.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/training-operators/crds/pytorchjobs.kubeflow.org-CustomResourceDefinition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/training-operators/crds/pytorchjobs.kubeflow.org-CustomResourceDefinition.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/training-operators/crds/tfjobs.kubeflow.org-CustomResourceDefinition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/training-operators/crds/tfjobs.kubeflow.org-CustomResourceDefinition.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/training-operators/crds/xgboostjobs.kubeflow.org-CustomResourceDefinition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/training-operators/crds/xgboostjobs.kubeflow.org-CustomResourceDefinition.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/training-operators/templates/ClusterRole/kubeflow-training-admin-ClusterRole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/training-operators/templates/ClusterRole/kubeflow-training-admin-ClusterRole.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/training-operators/templates/ClusterRole/kubeflow-training-edit-ClusterRole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/training-operators/templates/ClusterRole/kubeflow-training-edit-ClusterRole.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/training-operators/templates/ClusterRole/kubeflow-training-view-ClusterRole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/training-operators/templates/ClusterRole/kubeflow-training-view-ClusterRole.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/training-operators/templates/ClusterRole/training-operator-ClusterRole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/training-operators/templates/ClusterRole/training-operator-ClusterRole.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/training-operators/templates/ClusterRoleBinding/training-operator-ClusterRoleBinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/training-operators/templates/ClusterRoleBinding/training-operator-ClusterRoleBinding.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/training-operators/templates/Deployment/training-operator-kubeflow-Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/training-operators/templates/Deployment/training-operator-kubeflow-Deployment.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/training-operators/templates/Service/training-operator-kubeflow-Service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/training-operators/templates/Service/training-operator-kubeflow-Service.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/training-operators/templates/ServiceAccount/training-operator-kubeflow-ServiceAccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/training-operators/templates/ServiceAccount/training-operator-kubeflow-ServiceAccount.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/training-operators/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/training-operators/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/training-operators/templates/kubeflow-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/training-operators/templates/kubeflow-namespace.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/charts/training-operators/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/charts/training-operators/values.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/regional-values/values-ap-northeast-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/regional-values/values-ap-northeast-1.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/regional-values/values-ap-northeast-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/regional-values/values-ap-northeast-2.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/regional-values/values-ap-south-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/regional-values/values-ap-south-1.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/regional-values/values-ap-southeast-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/regional-values/values-ap-southeast-1.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/regional-values/values-ap-southeast-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/regional-values/values-ap-southeast-2.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/regional-values/values-ap-southeast-3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/regional-values/values-ap-southeast-3.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/regional-values/values-ap-southeast-4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/regional-values/values-ap-southeast-4.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/regional-values/values-ca-central-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/regional-values/values-ca-central-1.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/regional-values/values-eu-central-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/regional-values/values-eu-central-1.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/regional-values/values-eu-north-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/regional-values/values-eu-north-1.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/regional-values/values-eu-south-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/regional-values/values-eu-south-2.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/regional-values/values-eu-west-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/regional-values/values-eu-west-1.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/regional-values/values-eu-west-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/regional-values/values-eu-west-2.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/regional-values/values-sa-east-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/regional-values/values-sa-east-1.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/regional-values/values-us-east-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/regional-values/values-us-east-1.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/regional-values/values-us-east-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/regional-values/values-us-east-2.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/regional-values/values-us-west-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/regional-values/values-us-west-1.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/regional-values/values-us-west-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/regional-values/values-us-west-2.yaml -------------------------------------------------------------------------------- /helm_chart/HyperPodHelmChart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/HyperPodHelmChart/values.yaml -------------------------------------------------------------------------------- /helm_chart/get_helm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/get_helm.sh -------------------------------------------------------------------------------- /helm_chart/install_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/install_dependencies.sh -------------------------------------------------------------------------------- /helm_chart/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/helm_chart/readme.md -------------------------------------------------------------------------------- /hyperpod-cluster-stack-template/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-cluster-stack-template/CHANGELOG.md -------------------------------------------------------------------------------- /hyperpod-cluster-stack-template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-cluster-stack-template/README.md -------------------------------------------------------------------------------- /hyperpod-cluster-stack-template/hyperpod_cluster_stack_template/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hyperpod-cluster-stack-template/hyperpod_cluster_stack_template/creation_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-cluster-stack-template/hyperpod_cluster_stack_template/creation_template.yaml -------------------------------------------------------------------------------- /hyperpod-cluster-stack-template/hyperpod_cluster_stack_template/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-cluster-stack-template/hyperpod_cluster_stack_template/registry.py -------------------------------------------------------------------------------- /hyperpod-cluster-stack-template/hyperpod_cluster_stack_template/v1_0/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hyperpod-cluster-stack-template/hyperpod_cluster_stack_template/v1_0/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-cluster-stack-template/hyperpod_cluster_stack_template/v1_0/model.py -------------------------------------------------------------------------------- /hyperpod-cluster-stack-template/hyperpod_cluster_stack_template/v1_0/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-cluster-stack-template/hyperpod_cluster_stack_template/v1_0/schema.json -------------------------------------------------------------------------------- /hyperpod-cluster-stack-template/hyperpod_cluster_stack_template/v1_0/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-cluster-stack-template/hyperpod_cluster_stack_template/v1_0/template.py -------------------------------------------------------------------------------- /hyperpod-cluster-stack-template/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-cluster-stack-template/pyproject.toml -------------------------------------------------------------------------------- /hyperpod-custom-inference-template/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-custom-inference-template/CHANGELOG.md -------------------------------------------------------------------------------- /hyperpod-custom-inference-template/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-custom-inference-template/CONTRIBUTING.md -------------------------------------------------------------------------------- /hyperpod-custom-inference-template/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-custom-inference-template/LICENSE -------------------------------------------------------------------------------- /hyperpod-custom-inference-template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-custom-inference-template/README.md -------------------------------------------------------------------------------- /hyperpod-custom-inference-template/hyperpod_custom_inference_template/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-custom-inference-template/hyperpod_custom_inference_template/__init__.py -------------------------------------------------------------------------------- /hyperpod-custom-inference-template/hyperpod_custom_inference_template/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-custom-inference-template/hyperpod_custom_inference_template/registry.py -------------------------------------------------------------------------------- /hyperpod-custom-inference-template/hyperpod_custom_inference_template/v1_0/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-custom-inference-template/hyperpod_custom_inference_template/v1_0/__init__.py -------------------------------------------------------------------------------- /hyperpod-custom-inference-template/hyperpod_custom_inference_template/v1_0/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-custom-inference-template/hyperpod_custom_inference_template/v1_0/model.py -------------------------------------------------------------------------------- /hyperpod-custom-inference-template/hyperpod_custom_inference_template/v1_0/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-custom-inference-template/hyperpod_custom_inference_template/v1_0/schema.json -------------------------------------------------------------------------------- /hyperpod-custom-inference-template/hyperpod_custom_inference_template/v1_0/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-custom-inference-template/hyperpod_custom_inference_template/v1_0/template.py -------------------------------------------------------------------------------- /hyperpod-custom-inference-template/hyperpod_custom_inference_template/v1_1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-custom-inference-template/hyperpod_custom_inference_template/v1_1/__init__.py -------------------------------------------------------------------------------- /hyperpod-custom-inference-template/hyperpod_custom_inference_template/v1_1/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-custom-inference-template/hyperpod_custom_inference_template/v1_1/model.py -------------------------------------------------------------------------------- /hyperpod-custom-inference-template/hyperpod_custom_inference_template/v1_1/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-custom-inference-template/hyperpod_custom_inference_template/v1_1/schema.json -------------------------------------------------------------------------------- /hyperpod-custom-inference-template/hyperpod_custom_inference_template/v1_1/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-custom-inference-template/hyperpod_custom_inference_template/v1_1/template.py -------------------------------------------------------------------------------- /hyperpod-custom-inference-template/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-custom-inference-template/pyproject.toml -------------------------------------------------------------------------------- /hyperpod-jumpstart-inference-template/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-jumpstart-inference-template/CHANGELOG.md -------------------------------------------------------------------------------- /hyperpod-jumpstart-inference-template/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-jumpstart-inference-template/CONTRIBUTING.md -------------------------------------------------------------------------------- /hyperpod-jumpstart-inference-template/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-jumpstart-inference-template/LICENSE -------------------------------------------------------------------------------- /hyperpod-jumpstart-inference-template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-jumpstart-inference-template/README.md -------------------------------------------------------------------------------- /hyperpod-jumpstart-inference-template/hyperpod_jumpstart_inference_template/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-jumpstart-inference-template/hyperpod_jumpstart_inference_template/__init__.py -------------------------------------------------------------------------------- /hyperpod-jumpstart-inference-template/hyperpod_jumpstart_inference_template/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-jumpstart-inference-template/hyperpod_jumpstart_inference_template/registry.py -------------------------------------------------------------------------------- /hyperpod-jumpstart-inference-template/hyperpod_jumpstart_inference_template/v1_0/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-jumpstart-inference-template/hyperpod_jumpstart_inference_template/v1_0/__init__.py -------------------------------------------------------------------------------- /hyperpod-jumpstart-inference-template/hyperpod_jumpstart_inference_template/v1_0/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-jumpstart-inference-template/hyperpod_jumpstart_inference_template/v1_0/model.py -------------------------------------------------------------------------------- /hyperpod-jumpstart-inference-template/hyperpod_jumpstart_inference_template/v1_0/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-jumpstart-inference-template/hyperpod_jumpstart_inference_template/v1_0/schema.json -------------------------------------------------------------------------------- /hyperpod-jumpstart-inference-template/hyperpod_jumpstart_inference_template/v1_0/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-jumpstart-inference-template/hyperpod_jumpstart_inference_template/v1_0/template.py -------------------------------------------------------------------------------- /hyperpod-jumpstart-inference-template/hyperpod_jumpstart_inference_template/v1_1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-jumpstart-inference-template/hyperpod_jumpstart_inference_template/v1_1/__init__.py -------------------------------------------------------------------------------- /hyperpod-jumpstart-inference-template/hyperpod_jumpstart_inference_template/v1_1/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-jumpstart-inference-template/hyperpod_jumpstart_inference_template/v1_1/model.py -------------------------------------------------------------------------------- /hyperpod-jumpstart-inference-template/hyperpod_jumpstart_inference_template/v1_1/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-jumpstart-inference-template/hyperpod_jumpstart_inference_template/v1_1/schema.json -------------------------------------------------------------------------------- /hyperpod-jumpstart-inference-template/hyperpod_jumpstart_inference_template/v1_1/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-jumpstart-inference-template/hyperpod_jumpstart_inference_template/v1_1/template.py -------------------------------------------------------------------------------- /hyperpod-jumpstart-inference-template/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-jumpstart-inference-template/pyproject.toml -------------------------------------------------------------------------------- /hyperpod-pytorch-job-template/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-pytorch-job-template/CHANGELOG.md -------------------------------------------------------------------------------- /hyperpod-pytorch-job-template/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @aws/sagemaker-hyperpod-cli 2 | -------------------------------------------------------------------------------- /hyperpod-pytorch-job-template/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-pytorch-job-template/CONTRIBUTING.md -------------------------------------------------------------------------------- /hyperpod-pytorch-job-template/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-pytorch-job-template/LICENSE -------------------------------------------------------------------------------- /hyperpod-pytorch-job-template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-pytorch-job-template/README.md -------------------------------------------------------------------------------- /hyperpod-pytorch-job-template/hyperpod_pytorch_job_template/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-pytorch-job-template/hyperpod_pytorch_job_template/__init__.py -------------------------------------------------------------------------------- /hyperpod-pytorch-job-template/hyperpod_pytorch_job_template/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-pytorch-job-template/hyperpod_pytorch_job_template/registry.py -------------------------------------------------------------------------------- /hyperpod-pytorch-job-template/hyperpod_pytorch_job_template/v1_0/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-pytorch-job-template/hyperpod_pytorch_job_template/v1_0/__init__.py -------------------------------------------------------------------------------- /hyperpod-pytorch-job-template/hyperpod_pytorch_job_template/v1_0/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-pytorch-job-template/hyperpod_pytorch_job_template/v1_0/model.py -------------------------------------------------------------------------------- /hyperpod-pytorch-job-template/hyperpod_pytorch_job_template/v1_0/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-pytorch-job-template/hyperpod_pytorch_job_template/v1_0/schema.json -------------------------------------------------------------------------------- /hyperpod-pytorch-job-template/hyperpod_pytorch_job_template/v1_0/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-pytorch-job-template/hyperpod_pytorch_job_template/v1_0/template.py -------------------------------------------------------------------------------- /hyperpod-pytorch-job-template/hyperpod_pytorch_job_template/v1_1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-pytorch-job-template/hyperpod_pytorch_job_template/v1_1/__init__.py -------------------------------------------------------------------------------- /hyperpod-pytorch-job-template/hyperpod_pytorch_job_template/v1_1/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-pytorch-job-template/hyperpod_pytorch_job_template/v1_1/model.py -------------------------------------------------------------------------------- /hyperpod-pytorch-job-template/hyperpod_pytorch_job_template/v1_1/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-pytorch-job-template/hyperpod_pytorch_job_template/v1_1/schema.json -------------------------------------------------------------------------------- /hyperpod-pytorch-job-template/hyperpod_pytorch_job_template/v1_1/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-pytorch-job-template/hyperpod_pytorch_job_template/v1_1/template.py -------------------------------------------------------------------------------- /hyperpod-pytorch-job-template/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-pytorch-job-template/pyproject.toml -------------------------------------------------------------------------------- /hyperpod-space-template/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-space-template/CHANGELOG.md -------------------------------------------------------------------------------- /hyperpod-space-template/hyperpod_space_template/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-space-template/hyperpod_space_template/__init__.py -------------------------------------------------------------------------------- /hyperpod-space-template/hyperpod_space_template/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-space-template/hyperpod_space_template/registry.py -------------------------------------------------------------------------------- /hyperpod-space-template/hyperpod_space_template/v1_0/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-space-template/hyperpod_space_template/v1_0/__init__.py -------------------------------------------------------------------------------- /hyperpod-space-template/hyperpod_space_template/v1_0/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-space-template/hyperpod_space_template/v1_0/model.py -------------------------------------------------------------------------------- /hyperpod-space-template/hyperpod_space_template/v1_0/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-space-template/hyperpod_space_template/v1_0/schema.json -------------------------------------------------------------------------------- /hyperpod-space-template/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-space-template/pyproject.toml -------------------------------------------------------------------------------- /hyperpod-space-template/update_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/hyperpod-space-template/update_schema.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/setup.py -------------------------------------------------------------------------------- /src/sagemaker/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/__init__.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cli/__init__.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/clients/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cli/clients/__init__.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/clients/kubernetes_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cli/clients/kubernetes_client.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/cluster_stack_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cli/cluster_stack_utils.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/cluster_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cli/cluster_utils.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/commands/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cli/commands/cluster.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/commands/cluster_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cli/commands/cluster_stack.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/commands/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cli/commands/inference.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/commands/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cli/commands/init.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/commands/space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cli/commands/space.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/commands/space_access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cli/commands/space_access.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/commands/space_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cli/commands/space_template.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/commands/training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cli/commands/training.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/common_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cli/common_utils.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/constants/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/constants/command_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cli/constants/command_constants.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/constants/exception_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cli/constants/exception_constants.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/constants/hyperpod_instance_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cli/constants/hyperpod_instance_types.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/constants/init_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cli/constants/init_constants.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/constants/kueue_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cli/constants/kueue_constants.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/constants/pytorch_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cli/constants/pytorch_constants.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/constants/space_access_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cli/constants/space_access_constants.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/constants/space_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cli/constants/space_constants.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/constants/space_template_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cli/constants/space_template_constants.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/hyp_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cli/hyp_cli.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/inference_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cli/inference_utils.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/init_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cli/init_utils.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/service/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cli/service/__init__.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/service/cancel_training_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cli/service/cancel_training_job.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/service/discover_namespaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cli/service/discover_namespaces.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/service/exec_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cli/service/exec_command.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/service/get_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cli/service/get_logs.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/service/get_namespaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cli/service/get_namespaces.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/service/get_training_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cli/service/get_training_job.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/service/list_pods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cli/service/list_pods.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/service/list_training_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cli/service/list_training_jobs.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/service/self_subject_access_review.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cli/service/self_subject_access_review.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/space_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cli/space_utils.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/templates/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cli/templates/__init__.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/training_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cli/training_utils.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/type_handler_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cli/type_handler_utils.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cli/utils.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/validators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cli/validators/__init__.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/validators/cluster_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cli/validators/cluster_validator.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/validators/job_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cli/validators/job_validator.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cli/validators/validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cli/validators/validator.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cluster_management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cluster_management/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cluster_management/config/hp_cluster_stack_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cluster_management/config/hp_cluster_stack_config.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/cluster_management/hp_cluster_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/cluster_management/hp_cluster_stack.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/common/cli_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/common/cli_decorators.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/common/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/common/config/__init__.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/common/config/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/common/config/metadata.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/common/exceptions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/common/exceptions/__init__.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/common/telemetry/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/common/telemetry/__init__.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/common/telemetry/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/common/telemetry/constants.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/common/telemetry/telemetry_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/common/telemetry/telemetry_logging.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/common/telemetry/user_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/common/telemetry/user_agent.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/common/utils.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/inference/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/inference/__init__.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/inference/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/inference/config/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/inference/config/constants.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/inference/config/hp_endpoint_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/inference/config/hp_endpoint_config.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/inference/config/hp_jumpstart_endpoint_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/inference/config/hp_jumpstart_endpoint_config.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/inference/constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/inference/constant.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/inference/hp_endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/inference/hp_endpoint.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/inference/hp_endpoint_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/inference/hp_endpoint_base.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/inference/hp_jumpstart_endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/inference/hp_jumpstart_endpoint.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/inference/jumpstart_public_hub_visualization_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/inference/jumpstart_public_hub_visualization_utils.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/observability/MonitoringConfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/observability/MonitoringConfig.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/observability/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/observability/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/observability/constants.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/observability/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/observability/utils.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/space/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/space/__init__.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/space/hyperpod_space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/space/hyperpod_space.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/space/hyperpod_space_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/space/hyperpod_space_template.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/space/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/space/utils.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/training/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/training/__init__.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/training/accelerator_partition_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/training/accelerator_partition_util.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/training/config/__init__.py: -------------------------------------------------------------------------------- 1 | from sagemaker.hyperpod.common.config import * -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/training/config/hyperpod_pytorch_job_unified_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/training/config/hyperpod_pytorch_job_unified_config.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/training/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/training/constants.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/training/hyperpod_pytorch_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/training/hyperpod_pytorch_job.py -------------------------------------------------------------------------------- /src/sagemaker/hyperpod/training/quota_allocation_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/src/sagemaker/hyperpod/training/quota_allocation_util.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/conftest.py -------------------------------------------------------------------------------- /test/integration_tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/integration_tests/__init__.py -------------------------------------------------------------------------------- /test/integration_tests/cluster_management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration_tests/cluster_management/test_cli_cluster_stack_deletion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/integration_tests/cluster_management/test_cli_cluster_stack_deletion.py -------------------------------------------------------------------------------- /test/integration_tests/cluster_management/test_hp_cluster_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/integration_tests/cluster_management/test_hp_cluster_creation.py -------------------------------------------------------------------------------- /test/integration_tests/cluster_management/test_hp_cluster_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/integration_tests/cluster_management/test_hp_cluster_stack.py -------------------------------------------------------------------------------- /test/integration_tests/cluster_management/test_sdk_cluster_stack_deletion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/integration_tests/cluster_management/test_sdk_cluster_stack_deletion.py -------------------------------------------------------------------------------- /test/integration_tests/cluster_management/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/integration_tests/cluster_management/utils.py -------------------------------------------------------------------------------- /test/integration_tests/inference/cli/test_cli_custom_fsx_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/integration_tests/inference/cli/test_cli_custom_fsx_inference.py -------------------------------------------------------------------------------- /test/integration_tests/inference/cli/test_cli_custom_s3_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/integration_tests/inference/cli/test_cli_custom_s3_inference.py -------------------------------------------------------------------------------- /test/integration_tests/inference/cli/test_cli_jumpstart_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/integration_tests/inference/cli/test_cli_jumpstart_inference.py -------------------------------------------------------------------------------- /test/integration_tests/inference/cli/test_cli_jumpstart_inference_with_mig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/integration_tests/inference/cli/test_cli_jumpstart_inference_with_mig.py -------------------------------------------------------------------------------- /test/integration_tests/inference/sdk/test_sdk_custom_fsx_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/integration_tests/inference/sdk/test_sdk_custom_fsx_inference.py -------------------------------------------------------------------------------- /test/integration_tests/inference/sdk/test_sdk_custom_s3_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/integration_tests/inference/sdk/test_sdk_custom_s3_inference.py -------------------------------------------------------------------------------- /test/integration_tests/inference/sdk/test_sdk_jumpstart_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/integration_tests/inference/sdk/test_sdk_jumpstart_inference.py -------------------------------------------------------------------------------- /test/integration_tests/inference/sdk/test_sdk_jumpstart_inference_with_mig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/integration_tests/inference/sdk/test_sdk_jumpstart_inference_with_mig.py -------------------------------------------------------------------------------- /test/integration_tests/init/test_custom_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/integration_tests/init/test_custom_creation.py -------------------------------------------------------------------------------- /test/integration_tests/init/test_init_workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/integration_tests/init/test_init_workflow.py -------------------------------------------------------------------------------- /test/integration_tests/init/test_jumpstart_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/integration_tests/init/test_jumpstart_creation.py -------------------------------------------------------------------------------- /test/integration_tests/init/test_pytorch_job_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/integration_tests/init/test_pytorch_job_creation.py -------------------------------------------------------------------------------- /test/integration_tests/init/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/integration_tests/init/utils.py -------------------------------------------------------------------------------- /test/integration_tests/space/cli/test_cli_space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/integration_tests/space/cli/test_cli_space.py -------------------------------------------------------------------------------- /test/integration_tests/space/cli/test_cli_space_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/integration_tests/space/cli/test_cli_space_template.py -------------------------------------------------------------------------------- /test/integration_tests/space/sdk/test_sdk_space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/integration_tests/space/sdk/test_sdk_space.py -------------------------------------------------------------------------------- /test/integration_tests/space/sdk/test_sdk_space_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/integration_tests/space/sdk/test_sdk_space_template.py -------------------------------------------------------------------------------- /test/integration_tests/training/cli/test_accelerator_partition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/integration_tests/training/cli/test_accelerator_partition.py -------------------------------------------------------------------------------- /test/integration_tests/training/cli/test_cli_elastic_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/integration_tests/training/cli/test_cli_elastic_training.py -------------------------------------------------------------------------------- /test/integration_tests/training/cli/test_cli_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/integration_tests/training/cli/test_cli_training.py -------------------------------------------------------------------------------- /test/integration_tests/training/cli/test_gpu_quota_allocation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/integration_tests/training/cli/test_gpu_quota_allocation.py -------------------------------------------------------------------------------- /test/integration_tests/training/cli/test_topology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/integration_tests/training/cli/test_topology.py -------------------------------------------------------------------------------- /test/integration_tests/training/sdk/test_sdk_quota_allocation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/integration_tests/training/sdk/test_sdk_quota_allocation.py -------------------------------------------------------------------------------- /test/integration_tests/training/sdk/test_sdk_resource_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/integration_tests/training/sdk/test_sdk_resource_processing.py -------------------------------------------------------------------------------- /test/integration_tests/training/sdk/test_sdk_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/integration_tests/training/sdk/test_sdk_training.py -------------------------------------------------------------------------------- /test/integration_tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/integration_tests/utils.py -------------------------------------------------------------------------------- /test/unit_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unit_tests/cli/__init__.py: -------------------------------------------------------------------------------- 1 | # Test package initialization 2 | -------------------------------------------------------------------------------- /test/unit_tests/cli/test_accelerator_partition_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/cli/test_accelerator_partition_util.py -------------------------------------------------------------------------------- /test/unit_tests/cli/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/cli/test_cli.py -------------------------------------------------------------------------------- /test/unit_tests/cli/test_cluster_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/cli/test_cluster_stack.py -------------------------------------------------------------------------------- /test/unit_tests/cli/test_cluster_stack_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/cli/test_cluster_stack_utils.py -------------------------------------------------------------------------------- /test/unit_tests/cli/test_cluster_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/cli/test_cluster_utils.py -------------------------------------------------------------------------------- /test/unit_tests/cli/test_common_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/cli/test_common_utils.py -------------------------------------------------------------------------------- /test/unit_tests/cli/test_delete_cluster_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/cli/test_delete_cluster_stack.py -------------------------------------------------------------------------------- /test/unit_tests/cli/test_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/cli/test_inference.py -------------------------------------------------------------------------------- /test/unit_tests/cli/test_inference_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/cli/test_inference_utils.py -------------------------------------------------------------------------------- /test/unit_tests/cli/test_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/cli/test_init.py -------------------------------------------------------------------------------- /test/unit_tests/cli/test_init_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/cli/test_init_utils.py -------------------------------------------------------------------------------- /test/unit_tests/cli/test_quota_allocation_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/cli/test_quota_allocation_util.py -------------------------------------------------------------------------------- /test/unit_tests/cli/test_save_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/cli/test_save_template.py -------------------------------------------------------------------------------- /test/unit_tests/cli/test_space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/cli/test_space.py -------------------------------------------------------------------------------- /test/unit_tests/cli/test_space_access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/cli/test_space_access.py -------------------------------------------------------------------------------- /test/unit_tests/cli/test_space_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/cli/test_space_template.py -------------------------------------------------------------------------------- /test/unit_tests/cli/test_space_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/cli/test_space_utils.py -------------------------------------------------------------------------------- /test/unit_tests/cli/test_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/cli/test_training.py -------------------------------------------------------------------------------- /test/unit_tests/cli/test_training_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/cli/test_training_utils.py -------------------------------------------------------------------------------- /test/unit_tests/clients/test_kubernetes_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/clients/test_kubernetes_client.py -------------------------------------------------------------------------------- /test/unit_tests/cluster_management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unit_tests/cluster_management/test_hp_cluster_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/cluster_management/test_hp_cluster_stack.py -------------------------------------------------------------------------------- /test/unit_tests/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unit_tests/common/telemetry/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unit_tests/common/telemetry/test_telemetry_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/common/telemetry/test_telemetry_logging.py -------------------------------------------------------------------------------- /test/unit_tests/common/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/common/test_utils.py -------------------------------------------------------------------------------- /test/unit_tests/error_handling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/error_handling/__init__.py -------------------------------------------------------------------------------- /test/unit_tests/error_handling/run_comprehensive_404_unit_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/error_handling/run_comprehensive_404_unit_tests.py -------------------------------------------------------------------------------- /test/unit_tests/error_handling/test_cli_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/error_handling/test_cli_decorators.py -------------------------------------------------------------------------------- /test/unit_tests/inference/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unit_tests/inference/test_hp_endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/inference/test_hp_endpoint.py -------------------------------------------------------------------------------- /test/unit_tests/inference/test_hp_endpoint_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/inference/test_hp_endpoint_base.py -------------------------------------------------------------------------------- /test/unit_tests/inference/test_hp_jumpstart_endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/inference/test_hp_jumpstart_endpoint.py -------------------------------------------------------------------------------- /test/unit_tests/service/test_cancel_training_job_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/service/test_cancel_training_job_service.py -------------------------------------------------------------------------------- /test/unit_tests/service/test_discover_namespaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/service/test_discover_namespaces.py -------------------------------------------------------------------------------- /test/unit_tests/service/test_exec_command_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/service/test_exec_command_service.py -------------------------------------------------------------------------------- /test/unit_tests/service/test_get_logs_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/service/test_get_logs_service.py -------------------------------------------------------------------------------- /test/unit_tests/service/test_get_namespaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/service/test_get_namespaces.py -------------------------------------------------------------------------------- /test/unit_tests/service/test_get_training_job_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/service/test_get_training_job_service.py -------------------------------------------------------------------------------- /test/unit_tests/service/test_list_pods_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/service/test_list_pods_service.py -------------------------------------------------------------------------------- /test/unit_tests/service/test_list_training_jobs_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/service/test_list_training_jobs_service.py -------------------------------------------------------------------------------- /test/unit_tests/service/test_self_subject_access_review.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/service/test_self_subject_access_review.py -------------------------------------------------------------------------------- /test/unit_tests/test_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/test_cluster.py -------------------------------------------------------------------------------- /test/unit_tests/test_cluster_timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/test_cluster_timeout.py -------------------------------------------------------------------------------- /test/unit_tests/test_describe_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/test_describe_cluster.py -------------------------------------------------------------------------------- /test/unit_tests/test_hyperpod_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/test_hyperpod_cli.py -------------------------------------------------------------------------------- /test/unit_tests/test_hyperpod_space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/test_hyperpod_space.py -------------------------------------------------------------------------------- /test/unit_tests/test_hyperpod_space_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/test_hyperpod_space_template.py -------------------------------------------------------------------------------- /test/unit_tests/test_space_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/test_space_utils.py -------------------------------------------------------------------------------- /test/unit_tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/test_utils.py -------------------------------------------------------------------------------- /test/unit_tests/training/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unit_tests/training/test_hyperpod_pytorch_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/training/test_hyperpod_pytorch_job.py -------------------------------------------------------------------------------- /test/unit_tests/training/test_pytorch_job_template_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/training/test_pytorch_job_template_model.py -------------------------------------------------------------------------------- /test/unit_tests/validators/test_cluster_validatory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/validators/test_cluster_validatory.py -------------------------------------------------------------------------------- /test/unit_tests/validators/test_job_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/validators/test_job_validator.py -------------------------------------------------------------------------------- /test/unit_tests/validators/test_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/test/unit_tests/validators/test_validator.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-hyperpod-cli/HEAD/tox.ini --------------------------------------------------------------------------------