Fix default config flags#107131
Conversation
|
Hi @jonnylangefeld. Thanks for your PR. I'm waiting for a kubernetes member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
This is a follow up to kubernetes#105520 which only changed the new default config flags in the `NewKubectlCommand` function if `kubeConfigFlags == nil`. However they are not nil because they were initialized before here: https://github.com/kubernetes/kubernetes/blob/2fe968deb6cef4feea5bd0eb435e71844e397eed/staging/src/k8s.io/kubectl/pkg/cmd/cmd.go#L97 This fix uses the same defaults for both functions Signed-off-by: Jonny Langefeld <jonny.langefeld@gmail.com>
c455982 to
c4fbd35
Compare
|
/release-note-none |
soltysh
left a comment
There was a problem hiding this comment.
/lgtm
/approve
/triage accepted
/priority backlog
/ok-to-test
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: jonnylangefeld, soltysh The full list of commands accepted by this bot can be found here. The pull request process is described here DetailsNeeds approval from an approver in each of these files:
Approvers can indicate their approval by writing |
|
/retest |
|
/release-note-edit |
…7131-upstream-release-1.23 Automated cherry pick of #107131: Fix default config flags
This is a follow up to #105520 which only changed the new default config flags in the
NewKubectlCommandfunction ifkubeConfigFlags == nil. However they are not nil because they were initialized before here:kubernetes/staging/src/k8s.io/kubectl/pkg/cmd/cmd.go
Line 97 in 2fe968d
This fix uses the same defaults for both functions
What type of PR is this?
/kind cleanup
What this PR does / why we need it:
It completes an older PR #105520 which missed to set the newly introduced default discovery burst in the
NewDefaultKubectlCommandfunction. It only set it in theNewKubectlCommandfunction ifkubeConfigFlags == nil, which never happened because it was already initialized in theNewDefaultKubectlCommandfunction as shown above.kubernetes/staging/src/k8s.io/kubectl/pkg/cmd/cmd.go
Lines 296 to 297 in 2fe968d
The difference is demonstrated with these two builds:
Build of this PR (c4fbd35):
╰─ time ./_output/bin/kubectl get pods NAME READY STATUS RESTARTS AGE toolbox 1/1 Running 0 4d1h ./_output/bin/kubectl get pods 0.54s user 1.23s system 12% cpu 14.245 totalBuild of current master (489fb9b):
Which issue(s) this PR fixes:
Fixes #105520
Special notes for your reviewer:
/assign @seans3 @lavalamp @justinsb @soltysh
Does this PR introduce a user-facing change?