Skip to content

Commit

Permalink
Merge branch 'main' into EC2MigrationV2
Browse files Browse the repository at this point in the history
  • Loading branch information
edibble21 authored Oct 16, 2024
2 parents 1a95784 + 400023a commit d98cd33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/providers/instancetype/instancetype.go
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ func (p *DefaultProvider) List(ctx context.Context, nodeClass *v1.EC2NodeClass)
subnetZoneToID := lo.SliceToMap(nodeClass.Status.Subnets, func(s v1.Subnet) (string, string) {
return s.Zone, s.ZoneID
})
result := lo.Map(p.instanceTypesInfo, func(i *ec2types.InstanceTypeInfo, _ int) *cloudprovider.InstanceType {
result := lo.Map(p.instanceTypesInfo, func(i *ec2types.InstanceTypeInfo, _ int) *cloudprovider.InstanceType {n

Check failure on line 135 in pkg/providers/instancetype/instancetype.go

View workflow job for this annotation

GitHub Actions / ci

undefined: n (typecheck)

Check failure on line 135 in pkg/providers/instancetype/instancetype.go

View workflow job for this annotation

GitHub Actions / ci

undefined: n) (typecheck)

Check failure on line 135 in pkg/providers/instancetype/instancetype.go

View workflow job for this annotation

GitHub Actions / ci

undefined: n) (typecheck)

Check failure on line 135 in pkg/providers/instancetype/instancetype.go

View workflow job for this annotation

GitHub Actions / ci

undefined: n) (typecheck)

Check failure on line 135 in pkg/providers/instancetype/instancetype.go

View workflow job for this annotation

GitHub Actions / ci-test (1.25.x)

undefined: n

Check failure on line 135 in pkg/providers/instancetype/instancetype.go

View workflow job for this annotation

GitHub Actions / Analyze Go

undefined: n

Check failure on line 135 in pkg/providers/instancetype/instancetype.go

View workflow job for this annotation

GitHub Actions / ci-test (1.26.x)

undefined: n

Check failure on line 135 in pkg/providers/instancetype/instancetype.go

View workflow job for this annotation

GitHub Actions / ci-test (1.27.x)

undefined: n

Check failure on line 135 in pkg/providers/instancetype/instancetype.go

View workflow job for this annotation

GitHub Actions / ci-test (1.28.x)

undefined: n

Check failure on line 135 in pkg/providers/instancetype/instancetype.go

View workflow job for this annotation

GitHub Actions / ci-test (1.29.x)

undefined: n

Check failure on line 135 in pkg/providers/instancetype/instancetype.go

View workflow job for this annotation

GitHub Actions / ci-test (1.30.x)

undefined: n

Check failure on line 135 in pkg/providers/instancetype/instancetype.go

View workflow job for this annotation

GitHub Actions / ci-test (1.31.x)

undefined: n
instanceTypeVCPU.With(prometheus.Labels{
instanceTypeLabel: string(i.InstanceType),
}).Set(float64(lo.FromPtr(i.VCpuInfo.DefaultVCpus)))
Expand Down

0 comments on commit d98cd33

Please sign in to comment.