步骤 1-检索目标 AWS PCS集群的地址和密钥 - AWS PCS

本文属于机器翻译版本。若本译文内容与英语原文存在差异,则一律以英文原文为准。

步骤 1-检索目标 AWS PCS集群的地址和密钥

使用以下命令检索有关目标 AWS PCS集群 AWS CLI 的详细信息。在运行命令之前,进行以下替换:

  • Replace(替换) region-code 以及目标 AWS 区域 集群的运行位置。

  • Replace(替换) cluster-ident 使用目标集群的名称或标识符

aws pcs get-cluster --region region-code --cluster-identifier cluster-ident

该命令将返回类似于此示例的输出。

{ "cluster": { "name": "get-started", "id": "pcs_123456abcd", "arn": "arn:aws:pcs:us-east-1:111122223333:cluster/pcs_123456abcd", "status": "ACTIVE", "createdAt": "2024-09-23T21:03:52+00:00", "modifiedAt": "2024-09-23T21:03:52+00:00", "scheduler": { "type": "SLURM", "version": "23.11" }, "size": "SMALL", "slurmConfiguration": { "authKey": { "secretArn": "arn:aws:secretsmanager:us-east-1:111122223333:secret:pcs!slurm-secret-pcs_123456abcd-a12ABC", "secretVersion": "ef232370-d3e7-434c-9a87-ec35c1987f75" } }, "networking": { "subnetIds": [ "subnet-0123456789abcdef0" ], "securityGroupIds": [ "sg-0123456789abcdef0" ] }, "endpoints": [ { "type": "SLURMCTLD", "privateIpAddress": "10.3.149.220", "port": "6817" } ] } }

在此示例中,集群 Slurm 控制器端点的 IP 地址为,10.3.149.220并且正在端口上运行。6817secretArn将在后面的步骤中使用来检索集群密钥。IP 地址和端口将在后续步骤中用于配置sackd服务。