@@ -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 ("sagemaker-hyperpod-cluster-stack-bucket " , description = "S3 bucket name for templates" )
38+ custom_bucket_name : str = Field ("aws- sagemaker-hyperpod-cluster" , 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,6 +51,7 @@ 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 : str = Field ("1" , description = "Version number of cluster creation template" )
5455
5556 @field_validator ('kubernetes_version' , mode = 'before' )
5657 @classmethod
@@ -120,7 +121,7 @@ def to_config(self, region: str = None):
120121
121122 # Set fixed defaults
122123 defaults = {
123- 'custom_bucket_name' : 'sagemaker-hyperpod-cluster-stack-bucket ' ,
124+ 'custom_bucket_name' : 'aws- sagemaker-hyperpod-cluster' ,
124125 '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' ,
125126 'helm_repo_url' : 'https://github.com/aws/sagemaker-hyperpod-cli.git' ,
126127 'helm_repo_path' : 'helm_chart/HyperPodHelmChart'
0 commit comments