-
Notifications
You must be signed in to change notification settings - Fork 40.3k
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
Extract util used by jsonmergepatch and SMPatch #40942
Extract util used by jsonmergepatch and SMPatch #40942
Conversation
@k8s-bot bazel test this |
pkg/kubectl/cmd/BUILD
Outdated
@@ -114,6 +114,7 @@ go_library( | |||
"//vendor:k8s.io/apimachinery/pkg/util/intstr", | |||
"//vendor:k8s.io/apimachinery/pkg/util/json", | |||
"//vendor:k8s.io/apimachinery/pkg/util/jsonmergepatch", | |||
"//vendor:k8s.io/apimachinery/pkg/util/mergepatchutil", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
suggest pkg/util/patch
... util is already in the name
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Change to pkg/util/mergepatch
, since patch
has been used as a variable everywhere.
pkg/kubectl/cmd/edit.go
Outdated
@@ -46,6 +46,7 @@ import ( | |||
|
|||
"github.com/golang/glog" | |||
"github.com/spf13/cobra" | |||
"k8s.io/apimachinery/pkg/util/mergepatchutil" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
group with other apimachinery imports
nits on package name and imports, LGTM otherwise |
also, bazel was unhappy with |
aeadb84
to
e923610
Compare
Tests are passing. PTAL |
"fmt" | ||
) | ||
|
||
var ErrBadJSONDoc = fmt.Errorf("Invalid JSON document") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use errors.New, not fmt.Errorf for this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will change that. Why we prefer errors.New
than fmt.Errorf
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't trust the output of fmt.Errorf to always compare correctly (but maybe I'm just paranoid). When I see fmt.Errorf, I think of a class of errors (and one needs to make a separate type to check membership in this class), whereas errors.New is clearly a single error.
return ok | ||
} | ||
|
||
// PreconditionFunc asserts that an incompatible change is not present within a patch. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Everything from here down doesn't seem to belong in an "errors.go" file?
e923610
to
a910284
Compare
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED The following people have approved this PR: lavalamp, ymqytw Needs approval from an approver in each of these OWNERS Files:
You can indicate your approval by writing |
Automatic merge from submit-queue (batch tested with PRs 40289, 40877, 40879, 39972, 40942) |
followup #40666 (comment)
Extract some util out of the
strategicMergePatch
to makejsonMergePatch
doesn't depend onstrategicMergePatch
.cc: @liggitt