Skip to content

Commit

Permalink
Fixing worker node group count dereference for nutanix
Browse files Browse the repository at this point in the history
  • Loading branch information
pokearu committed Oct 30, 2022
1 parent 670b486 commit 1215cf0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/providers/nutanix/template.go
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ func buildTemplateMapMD(clusterSpec *cluster.Spec, workerNodeGroupMachineSpec v1
"eksaSystemNamespace": constants.EksaSystemNamespace,
"format": format,
"kubernetesVersion": bundle.KubeDistro.Kubernetes.Tag,
"workerReplicas": workerNodeGroupConfiguration.Count,
"workerReplicas": *workerNodeGroupConfiguration.Count,
"workerPoolName": "md-0",
"workerSshAuthorizedKey": workerNodeGroupMachineSpec.Users[0].SshAuthorizedKeys[0],
"workerSshUsername": workerNodeGroupMachineSpec.Users[0].Name,
Expand Down

0 comments on commit 1215cf0

Please sign in to comment.