@@ -35,7 +35,7 @@ class ClusterStackBase(BaseModel):
3535 create_s3_endpoint_stack : Optional [bool ] = Field (True , description = "Boolean to Create S3 Endpoint stack" )
3636 enable_hp_inference_feature : Optional [bool ] = Field (False , description = "Boolean to enable inference operator in Hyperpod cluster" )
3737 stage : Optional [str ] = Field ("prod" , description = "Deployment stage used in S3 bucket naming for inference operator. Valid values: \" gamma\" , \" prod\" " )
38- custom_bucket_name : str = Field ("aws-sagemaker-hyperpod-cluster" , description = "S3 bucket name for templates" )
38+ custom_bucket_name : str = Field ("aws-sagemaker-hyperpod-cluster-setup " , description = "S3 bucket name for templates" )
3939 create_life_cycle_script_stack : Optional [bool ] = Field (True , description = "Boolean to Create Life Cycle Script Stack" )
4040 create_s3_bucket_stack : Optional [bool ] = Field (True , description = "Boolean to Create S3 Bucket Stack" )
4141 s3_bucket_name : Optional [str ] = Field ("s3-bucket" , description = "The name of the S3 bucket used to store the cluster lifecycle scripts" )
@@ -51,7 +51,6 @@ class ClusterStackBase(BaseModel):
5151 file_system_type_version : Optional [float ] = Field (2.15 , description = "File system type version for the FSx file system" )
5252 storage_capacity : Optional [int ] = Field (1200 , description = "Storage capacity for the FSx file system in GiB" )
5353 fsx_file_system_id : Optional [str ] = Field ("" , description = "Existing FSx file system ID" )
54- template_version : Optional [str ] = Field ("1" , description = "Version number of cluster creation template" )
5554
5655 @field_validator ('kubernetes_version' , mode = 'before' )
5756 @classmethod
@@ -121,7 +120,7 @@ def to_config(self, region: str = None):
121120
122121 # Set fixed defaults
123122 defaults = {
124- 'custom_bucket_name' : 'aws-sagemaker-hyperpod-cluster' ,
123+ 'custom_bucket_name' : 'aws-sagemaker-hyperpod-cluster-setup ' ,
125124 'github_raw_url' : 'https://raw.githubusercontent.com/aws-samples/awsome-distributed-training/refs/heads/main/1.architectures/7.sagemaker-hyperpod-eks/LifecycleScripts/base-config/on_create.sh' ,
126125 'helm_repo_url' : 'https://github.com/aws/sagemaker-hyperpod-cli.git' ,
127126 'helm_repo_path' : 'helm_chart/HyperPodHelmChart'
0 commit comments