-
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
Windows kubectl sends full path as User-Agent #44419
Labels
Comments
monopole
added a commit
to monopole/kubernetes
that referenced
this issue
Apr 13, 2017
**What this PR does / why we need it**: The User-Agent reported by clients (e.g. kubectl) in request headers should include the name of the client executable but not the full path to that executable. This PR changes how this name is determined by using the operating-system specific package "path/filepath" (meant for working with file system paths) instead of the "path" package (meant for URL paths). This fixes a problem on the Windows OS in the case where, if the user has not set their PATH to point to the location of their client executable, the User-Agent includes the full path - which is unnecessary. Fixes: kubernetes#44419
k8s-github-robot
pushed a commit
that referenced
this issue
Apr 14, 2017
Automatic merge from submit-queue (batch tested with PRs 44362, 44421, 44468, 43878, 44480) Drop leading path of KUBECTL.EXE if it shows up in User-Agent. Partial fix for #44419 Release note: kube-apiserver now drops unneeded path information if an older version of Windows kubectl sends it.
monopole
added a commit
to monopole/kubernetes
that referenced
this issue
Apr 14, 2017
**What this PR does / why we need it**: The User-Agent reported by clients (e.g. kubectl) in request headers should include the name of the client executable but not the full path to that executable. This PR changes how this name is determined by using the operating-system specific package "path/filepath" (meant for working with file system paths) instead of the "path" package (meant for URL paths). This fixes a problem on the Windows OS in the case where, if the user has not set their PATH to point to the location of their client executable, the User-Agent unnecessarily includes the full path. Fixes: kubernetes#44419
k8s-github-robot
pushed a commit
that referenced
this issue
Apr 15, 2017
Automatic merge from submit-queue Use OS-specific libs when computing client User-Agent in kubectl, etc. **What this PR does / why we need it**: The User-Agent reported by clients (e.g. kubectl) in request headers should include the name of the client executable but not the full path to that executable. This PR changes how this name is determined by using the operating-system specific package "path/filepath" (meant for working with file system paths) instead of the "path" package (meant for URL paths). This fixes a problem on the Windows OS in the case where, if the user has not set their PATH to point to the location of their client executable, the User-Agent includes the full path - which is unnecessary. Fixes: #44419 ```release-note Use OS-specific libs when computing client User-Agent in kubectl, etc. ```
(Re-opening until the fixes are backported and released.) |
k8s-github-robot
pushed a commit
that referenced
this issue
Apr 18, 2017
Automatic merge from submit-queue Use OS-specific libs when computing client User-Agent in kubectl, etc. This PR fixes issue 44419 in the release branch. This PR is a patchable version of mainline PR #44423 for 1.6 release branch The original full PR #44423 came after a large PR #40777 that split /vendor/BUILD into hundreds of BUILD files. Thus PR 44423's version of rest/BUILD does not exist in the 1.6 release branch, and had to be tweaked here. ```release-note Fix for [Windows kubectl sending full path to binary in User Agent](#44419). ```
The kubectl fix is now on 1.6 (#44622). |
jayunit100
pushed a commit
to jayunit100/kubernetes
that referenced
this issue
Apr 25, 2017
**What this PR does / why we need it**: The User-Agent reported by clients (e.g. kubectl) in request headers should include the name of the client executable but not the full path to that executable. This PR changes how this name is determined by using the operating-system specific package "path/filepath" (meant for working with file system paths) instead of the "path" package (meant for URL paths). This fixes a problem on the Windows OS in the case where, if the user has not set their PATH to point to the location of their client executable, the User-Agent unnecessarily includes the full path. Fixes: kubernetes#44419
Seems fixed - @mml please reopen if there is anything left |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It looks like kubectl uses path.Base instead of filepath.Base, and the former does not work correctly when the OS uses a path separator besides ‘/’. This only affects kubectl on Windows, AFAICT.
We should patch kubectl and also modify kube-apiserver to discard this information when contacted by old clients. We should also cherry pick this onto 1.6, 1.5, and 1.4.
@monopole has a fix for kubectl, and I have a fix for kube-apiserver.
The text was updated successfully, but these errors were encountered: