Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump golang to 1.23.7 and golangci-lint to 1.64.8 #6218

Merged
merged 1 commit into from
Mar 24, 2025

Conversation

seanlaii
Copy link
Contributor

@seanlaii seanlaii commented Mar 20, 2025

What type of PR is this?
/kind cleanup

What this PR does / why we need it:
To remove the dependency of hashicorp, we need to bump golang to 1.23.7.
For more details, please check the discussion at #6212.

Which issue(s) this PR fixes:
Prerequisite of #3941

Special notes for your reviewer:

Does this PR introduce a user-facing change?:

Karmada is now built with Golang v1.23.7.

@karmada-bot karmada-bot added the kind/cleanup Categorizes issue or PR as related to cleaning up code, process, or technical debt. label Mar 20, 2025
@karmada-bot karmada-bot added the size/M Denotes a PR that changes 30-99 lines, ignoring generated files. label Mar 20, 2025
@codecov-commenter
Copy link

codecov-commenter commented Mar 20, 2025

⚠️ Please install the 'codecov app svg image' to ensure uploads and comments are reliably processed by Codecov.

Codecov Report

Attention: Patch coverage is 70.37037% with 8 lines in your changes missing coverage. Please review.

Project coverage is 47.90%. Comparing base (56b72f1) to head (d231a87).
Report is 2 commits behind head on master.

Files with missing lines Patch % Lines
...ontrollers/federatedhpa/federatedhpa_controller.go 70.00% 3 Missing ⚠️
pkg/estimator/client/cache.go 0.00% 1 Missing ⚠️
pkg/estimator/client/general.go 66.66% 1 Missing ⚠️
pkg/estimator/server/estimate.go 50.00% 1 Missing ⚠️
pkg/resourceinterpreter/interpreter.go 0.00% 1 Missing ⚠️
pkg/util/overridemanager/overridemanager.go 0.00% 1 Missing ⚠️

❗ Your organization needs to install the Codecov GitHub app to enable full functionality.

Additional details and impacted files
@@            Coverage Diff             @@
##           master    #6218      +/-   ##
==========================================
- Coverage   47.91%   47.90%   -0.01%     
==========================================
  Files         676      676              
  Lines       55958    55962       +4     
==========================================
  Hits        26810    26810              
- Misses      27400    27404       +4     
  Partials     1748     1748              
Flag Coverage Δ
unittests 47.90% <70.37%> (-0.01%) ⬇️

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@seanlaii
Copy link
Contributor Author

seanlaii commented Mar 21, 2025

Hi @RainbowMango , please help take a look when you get a change! Thank you!

There are six lint errors from a new gosec rule that warns converting an int or int64 to int32 may cause an overflow on 64-bit systems.
I think in these cases we could add a nolint to ignore the errors, but I'd like to confirm with the community if a type change is preferable. Thank you!

Error: pkg/webhook/interpreter/response.go:56:19: G115: integer overflow conversion int -> int32 (gosec)
				Code:    int32(code),
				              ^
Error: pkg/scheduler/core/spreadconstraint/select_clusters_by_cluster.go:43:85: G115: integer overflow conversion int -> int32 (gosec)
		clusterInfos = selectClustersByAvailableResource(groupClustersInfo.Clusters, int32(needCnt), needReplicas)
		                                                                                  ^
Error: pkg/estimator/client/cache.go:113:86: G115: integer overflow conversion int -> int32 (gosec)
		names.GenerateEstimatorServiceName(serviceInfo.NamePrefix, serviceInfo.Name), int32(grpcConfig.TargetPort))
		                                                                                   ^
Error: pkg/estimator/client/general.go:6[9](https://github.com/karmada-io/karmada/actions/runs/13971691479/job/39114901333?pr=6218#step:6:10):15: G115: integer overflow conversion int64 -> int32 (gosec)
		return int32(maximumReplicas)
		            ^
Error: pkg/estimator/client/general.go:83:16: G[11](https://github.com/karmada-io/karmada/actions/runs/13971691479/job/39114901333?pr=6218#step:6:12)5: integer overflow conversion int64 -> int32 (gosec)
			return int32(maximumReplicas)
			            ^
Error: pkg/estimator/client/general.go:93:14: G115: integer overflow conversion int64 -> int32 (gosec)
	return int32(maximumReplicas)

@@ -1415,14 +1415,14 @@ func setConditionInList(inputList []autoscalingv2.HorizontalPodAutoscalerConditi
return resList
}

func max(a, b int32) int32 {
func maxInt32(a, b int32) int32 {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Change the name of the function to avoid overlapping with the name of the built-in max function.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

+1
on change the name.

But the naming is misleading with the math.MaxInt32.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How about maxOfInt32 or computeMaxInt32?

Copy link
Member

@RainbowMango RainbowMango left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/assign
I will take a look soon.

Copy link
Contributor

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR bumps the Golang version to v1.23.7 and golangci-lint to v1.64.8 while cleaning up some redundant code patterns and improving function naming for clarity in various modules.

  • Updated random number generation variable naming and removed redundant nil checks in tests
  • Refactored error creation to use errors.New and updated helper function names for consistency
  • Adjusted error handling in test cases and production code for a more streamlined error message format

Reviewed Changes

Copilot reviewed 6 out of 9 changed files in this pull request and generated 1 comment.

Show a summary per file
File Description
pkg/controllers/workloadrebalancer/workloadrebalancer_controller_test.go Renamed variable from "max" to "maxInt" for clarity in generating a random suffix
pkg/util/helper/workstatus_test.go Removed unnecessary nil slice checks in test functions
pkg/resourceinterpreter/customized/declarative/luavm/lua_test.go Changed t.Errorf calls to t.Error for error logging in tests
pkg/estimator/server/estimate.go Simplified error creation; note potential spelling issue in error message
pkg/controllers/federatedhpa/federatedhpa_controller.go Updated error handling and function naming (minInt32/maxInt32) for improved clarity and consistency
pkg/util/overridemanager/overridemanager.go Replaced fmt.Errorf with errors.New for consistent error handling in the override manager
Files not reviewed (3)
  • .go-version: Language not supported
  • go.mod: Language not supported
  • hack/verify-staticcheck.sh: Language not supported
Comments suppressed due to low confidence (1)

pkg/controllers/federatedhpa/federatedhpa_controller.go:1289

  • The renaming to 'minInt32' (and similarly 'maxInt32') improves clarity; please ensure that all affected references and related documentation are updated accordingly.
selectPolicyFn = minInt32

@@ -1415,14 +1415,14 @@ func setConditionInList(inputList []autoscalingv2.HorizontalPodAutoscalerConditi
return resList
}

func max(a, b int32) int32 {
func maxInt32(a, b int32) int32 {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

+1
on change the name.

But the naming is misleading with the math.MaxInt32.

@@ -1415,14 +1415,14 @@ func setConditionInList(inputList []autoscalingv2.HorizontalPodAutoscalerConditi
return resList
}

func max(a, b int32) int32 {
func maxInt32(a, b int32) int32 {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How about maxOfInt32 or computeMaxInt32?

@RainbowMango
Copy link
Member

I think in these cases we could add a nolint to ignore the errors, but I'd like to confirm with the community if a type change is preferable. Thank you!

I agree to ignore these false-positive warnings so do not let that block this PR.
But I'd like to invite @zhzhuang-zju to take another look if we can change the type to avoid the conversion.

@zhzhuang-zju
Copy link
Contributor

@RainbowMango @seanlaii Through investigation, only the third item is more suitable for avoiding the conversion by modifying the type.

Error: pkg/estimator/client/cache.go:113:86: G115: integer overflow conversion int -> int32 (gosec)
		names.GenerateEstimatorServiceName(serviceInfo.NamePrefix, serviceInfo.Name), int32(grpcConfig.TargetPort))

For the others, it is necessary to modify the field definitions in the API or make other changes with relatively high costs, so it is not recommended.

@RainbowMango
Copy link
Member

Through investigation, only the third item is more suitable for avoiding the conversion by modifying the type.

By how? Give an example.

@zhzhuang-zju
Copy link
Contributor

By how? Give an example.

func resolveCluster(kubeClient kubernetes.Interface, namespace, id string, port int) ([]string, error)

// findServicePort finds the service port by name or numerically.
func findServicePort(svc *corev1.Service, port int) (*corev1.ServicePort, error) {
	for _, svcPort := range svc.Spec.Ports {
		if int(svcPort.Port) == port {
			return &svcPort, nil
		}
	}
	return nil, apierrors.NewServiceUnavailable(fmt.Sprintf("no service port %d found for service %q", port, svc.Name))
}

Change the conversion from int -> int32 to int32 -> int.

@seanlaii seanlaii force-pushed the bump-go-ci-lint branch 3 times, most recently from 2c4eecc to 1126123 Compare March 21, 2025 21:26
@seanlaii
Copy link
Contributor Author

By how? Give an example.

func resolveCluster(kubeClient kubernetes.Interface, namespace, id string, port int) ([]string, error)

// findServicePort finds the service port by name or numerically.
func findServicePort(svc *corev1.Service, port int) (*corev1.ServicePort, error) {
	for _, svcPort := range svc.Spec.Ports {
		if int(svcPort.Port) == port {
			return &svcPort, nil
		}
	}
	return nil, apierrors.NewServiceUnavailable(fmt.Sprintf("no service port %d found for service %q", port, svc.Name))
}

Change the conversion from int -> int32 to int32 -> int.

Thanks for the suggestion and review!
I have tried it but found that the type of the Port of corev1.Service is int32. It means we will still need to convert from int --> int32.
The possible way to avoid the conversion is to change the type of targetPort in the grpc config.

Do you suggest to do this?

In my opinion, since this config is used by multiple components, maybe we could address this in another PR?

@RainbowMango
Copy link
Member

In my opinion, since this config is used by multiple components, maybe we could address this in another PR?

+1
Just ignore this waring in this PR would be fine.

@zhzhuang-zju
Copy link
Contributor

In my opinion, since this config is used by multiple components, maybe we could address this in another PR?

agree

I have tried it but found that the type of the Port of corev1.Service is int32. It means we will still need to convert from int --> int32.

@seanlaii Which specific part of the code is causing the issue? Is it the following section?

if svcPort.Port == port {

@seanlaii
Copy link
Contributor Author

seanlaii commented Mar 22, 2025

@seanlaii Which specific part of the code is causing the issue? Is it the following section?

Yes, that's the primary reason. The gRPC configuration's port field (int) requires conversion to match the servicePort (int32).

@zhzhuang-zju
Copy link
Contributor

Yes, that's the primary reason. The gRPC configuration's port field (int) requires conversion to match the servicePort (int32).

How about converting servicePort (of type int32) to int to match the port field (of type int)? Converting int32 to int should not result in an integer overflow.

		if int(svcPort.Port) == port {
			return &svcPort, nil
		}

Of course, this is just a technical discussion, and making such a modification is a bit of a clever workaround. It would be more reasonable to try to change the type of targetPort in the gRPC config.

@seanlaii
Copy link
Contributor Author

Ah, sorry, you're absolutely right! I misread that as an assignment instead of an equality check. Should I change it?

@zhzhuang-zju
Copy link
Contributor

Ah, sorry, you're absolutely right! I misread that as an assignment instead of an equality check. Should I change it?

No need, changing the type of targetPort in the gRPC config in another PR would fix this issue too~

@seanlaii
Copy link
Contributor Author

Gotcha! Please help review again. Fixed all the lint errors. Thanks!

Verified

This commit was created on github.com and signed with GitHub’s verified signature. The key has expired.
Signed-off-by: wei-chenglai <qazwsx0939059006@gmail.com>
Copy link
Member

@RainbowMango RainbowMango left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/lgtm
/approve

@karmada-bot karmada-bot added the lgtm Indicates that a PR is ready to be merged. label Mar 24, 2025
@karmada-bot
Copy link
Collaborator

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: RainbowMango

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@karmada-bot karmada-bot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label Mar 24, 2025
@RainbowMango RainbowMango added this to the v1.14 milestone Mar 24, 2025
@karmada-bot karmada-bot merged commit 0235dc6 into karmada-io:master Mar 24, 2025
24 checks passed
@RainbowMango
Copy link
Member

Hi @seanlaii , I noticed that golangci-lint has been upgraded to v2, which is a major change. I don't know if you are interested in upgrading it. After a quick look at the changelog, it appears that the golangci-lint configuration should be tweaked a little bit.

@seanlaii
Copy link
Contributor Author

Hi @RainbowMango ,

I am interested in working on it. Let me take a look. Thank you!

@RainbowMango
Copy link
Member

Thank you, no rush, take your time.

@seanlaii seanlaii deleted the bump-go-ci-lint branch March 26, 2025 03:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
approved Indicates a PR has been approved by an approver from all required OWNERS files. kind/cleanup Categorizes issue or PR as related to cleaning up code, process, or technical debt. lgtm Indicates that a PR is ready to be merged. size/M Denotes a PR that changes 30-99 lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants