DATASOURCE::EHPC::Nodes类型用于获取弹性高性能计算集群节点的列表。
语法
{
"Type": "DATASOURCE::EHPC::Nodes",
"Properties": {
"Role": String,
"HostNameSuffix": String,
"PrivateIpAddress": String,
"ClusterId": String,
"HostNamePrefix": String,
"HostName": String,
"RefreshOptions": String
}
}
属性
属性名称 | 类型 | 必须 | 允许更新 | 描述 | 约束 |
Role | String | 否 | 是 | 节点类型。 | 取值:
|
HostNameSuffix | String | 否 | 是 | 主机名后缀。 | 查询具有指定后缀的节点。 |
PrivateIpAddress | String | 否 | 是 | 私网IP地址。 | 无 |
ClusterId | String | 是 | 是 | 待查询的集群ID。 | 您可以通过调用ListClusters接口获取集群ID。 |
HostNamePrefix | String | 否 | 是 | 主机名前缀。 | 无 |
HostName | String | 否 | 是 | 节点名称。 | 限制:
|
RefreshOptions | String | 否 | 是 | 当资源栈更新时,数据源资源的刷新策略。 | 有效值:
|
返回数据(Fn::GetAtt)
NodeIds:节点ID列表信息。
Nodes:节点列表信息。
属性名称 | 类型 | 描述 | 约束 |
NodeIds | List | 节点ID列表信息。 | 无 |
Nodes | List | 节点列表信息。 | 无 |
NodeId | String | 节点ID。 | 无 |
ImageOwnerAlias | String | 镜像类型。 | 无 |
StateInSched | String | 节点状态。 | 不同调度器状态不同。 |
ZoneId | String | 可用区ID。 | 无 |
VSwitchId | String | 交换机ID。 | 无 |
Expired | Boolean | 包年包月付费节点是否到期。 | 取值:
|
AddTime | String | 加入集群的时间。 | 按照ISO8601标准表示,并需要使用UTC时间,格式为yyyy-MM-ddTHH:mm:ssZ。 |
PublicIpAddress | String | 公网IP地址。 | 无 |
IpAddress | String | 节点IP地址。 | 无 |
VpcId | String | 专有网络ID。 | 无 |
CreateMode | String | 节点创建方式。 | 无 |
Version | String | 集群客户端版本。 | 无 |
UsedResources | Map | 计算节点资源使用量。 | 例如:
|
TotalResources | Map | 该节点使用的资源总量。 | 例如:
|
ImageId | String | 镜像ID。 | 无 |
HtEnabled | Boolean | 是否开启超线程。 | 取值:
|
RegionId | String | 地域ID。 | 无 |
LockReason | String | 节点被锁定类型。 | 取值:
|
InstanceType | String | 节点实例规格。 | 无 |
HostName | String | 节点名称。 | 无 |
SpotStrategy | String | 计算节点竞价策略。 | 无 |
Location | String | 节点所在位置。 | 取值:
|
Roles | List | 节点类别。 | 取值:
说明 调度器和域服务器都属于管控节点。 |
示例
ROSTemplateFormatVersion: '2015-09-01'
Parameters:
ClusterId:
Type: String
Description: The ID of the cluster.
Resources:
Nodes:
Type: DATASOURCE::EHPC::Nodes
Properties:
ClusterId:
Ref: ClusterId
Outputs:
NodeIds:
Description: The list of node IDs.
Value:
Fn::GetAtt:
- Nodes
- NodeIds
Nodes:
Description: The list of nodes.
Value:
Fn::GetAtt:
- Nodes
- Nodes
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"ClusterId": {
"Type": "String",
"Description": "The ID of the cluster."
}
},
"Resources": {
"Nodes": {
"Type": "DATASOURCE::EHPC::Nodes",
"Properties": {
"ClusterId": {
"Ref": "ClusterId"
}
}
}
},
"Outputs": {
"NodeIds": {
"Description": "The list of node IDs.",
"Value": {
"Fn::GetAtt": [
"Nodes",
"NodeIds"
]
}
},
"Nodes": {
"Description": "The list of nodes.",
"Value": {
"Fn::GetAtt": [
"Nodes",
"Nodes"
]
}
}
}
}