Fixed wornding of control plane

This commit is contained in:
2025-11-09 03:14:15 +01:00
parent d3f3b8b972
commit 244c982b17
7 changed files with 11 additions and 11 deletions

View File

@@ -135,11 +135,11 @@ def main():
)
)
# Get all clusterName & controlplaneIp pairs
# Get all clusterName & controlPlaneIp pairs
clusters = map(
lambda node: {
"name": node["clusterName"],
"controlplaneIp": node["controlplaneIp"],
"controlPlaneIp": node["controlPlaneIp"],
},
nodes,
)