Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .secrets.baseline
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"files": "^.secrets.baseline$",
"lines": null
},
"generated_at": "2025-06-19T07:38:57Z",
"generated_at": "2025-10-31T06:41:50Z",
"plugins_used": [
{
"name": "AWSKeyDetector"
Expand Down Expand Up @@ -104,7 +104,7 @@
}
]
},
"version": "0.13.1+ibm.62.dss",
"version": "0.13.1+ibm.64.dss",
"word_list": {
"file": null,
"hash": null
Expand Down
3 changes: 2 additions & 1 deletion ibm_catalog.json
Original file line number Diff line number Diff line change
Expand Up @@ -749,7 +749,8 @@
"description": "This deployable architecture sets up a VPC on IBM Cloud to run HPC workloads within a single zone. A login node is deployed in a dedicated subnet and security group to facilitate secure access to the HPC environment. The HPC management nodes and static compute nodes reside in a separate subnet and security group.\nClusters of virtual server instances are provisioned with the IBM Spectrum LSF scheduler pre-installed for HPC workload job management. The LSF scheduler dynamically provisions compute nodes as needed and removes them once jobs are completed.\nThe solution supports either IBM Cloud File Storage for VPC or a dedicated clustered shared file system using IBM Storage Scale which is a high performance, highly available, clustered file system with advanced features like File Audit Logging for security and Active File Management for hybrid cloud connectivity. IBM Storage Scale provides more performance and scalability than standard file storage solutions."
}
]
}
},
"ignore_readme": true
}
]
}
Expand Down
4 changes: 2 additions & 2 deletions modules/common/scripts/prepare_scale_inv_ini.py
Original file line number Diff line number Diff line change
Expand Up @@ -949,7 +949,7 @@ def initialize_scale_ces_details(
export_node_ip_map = [
{protocol_cluster_instance_name.split(".")[0]: ip}
for protocol_cluster_instance_name, ip in zip(
protocol_cluster_instance_names, export_ip_pool
protocol_cluster_instance_names, export_ip_pool, strict=False
)
]

Expand Down Expand Up @@ -1596,7 +1596,7 @@ def initialize_scale_ces_details(
node_template = ""
for each_entry in node_details:
if ARGUMENTS.bastion_ssh_private_key is None:
each_entry = each_entry + " " + "ansible_ssh_common_args=" ""
each_entry = each_entry + " " + "ansible_ssh_common_args="
node_template = node_template + each_entry + "\n"
else:
proxy_command = f"ssh -p 22 -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -W %h:%p {ARGUMENTS.bastion_user}@{ARGUMENTS.bastion_ip} -i {ARGUMENTS.bastion_ssh_private_key}"
Expand Down