Skip to content

Commit

Permalink
Fix typo (#506)
Browse files Browse the repository at this point in the history
  • Loading branch information
Issacwww authored Nov 9, 2024
1 parent 8d36c24 commit 954036e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion kubetest2/internal/deployers/eksapi/static_cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ func (s *StaticClusterManager) CreateNodePool() error {

t := templates.NvidiaStaticClusterNodepool
var buf bytes.Buffer
if err := t.Execute(&buf, templates.NvidiaStaticClusterNodepoolTempalteData{
if err := t.Execute(&buf, templates.NvidiaStaticClusterNodepoolTemplateData{
Arch: arch,
InstanceTypes: s.options.InstanceTypes,
}); err != nil {
Expand Down
2 changes: 1 addition & 1 deletion kubetest2/internal/deployers/eksapi/templates/templates.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ type BusyboxDeploymentTemplateData struct {
Nodes int
}

type nvidiaStaticClusterNodepoolTemplateData struct {
type NvidiaStaticClusterNodepoolTemplateData struct {
Arch string
InstanceTypes []string
}
Expand Down

0 comments on commit 954036e

Please sign in to comment.