-
Notifications
You must be signed in to change notification settings - Fork 546
Switch to version 1.0.0 : node-fetch behind proxy #2161
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
Comments
Does it work if you set the proxy configuration in your Reference: |
Adding the type ApiConstructor<T extends ApiType> = new (config: Configuration) => T;
function connectToKubeClusterWithProxy(proxyURL: string) {
const kc = new k8s.KubeConfig();
const originalMakeApiClient = kc.makeApiClient;
kc.makeApiClient = function <T extends ApiType>(api: ApiConstructor<T>): T {
const client = originalMakeApiClient.call(kc, api);
client.interceptors.push(async (config: Configuration) => {
config.proxy=proxyURL;
});
return client as T;
};
} Also the |
The Kubernetes project currently lacks enough contributors to adequately respond to all issues. This bot triages un-triaged issues according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle stale |
The Kubernetes project currently lacks enough active contributors to adequately respond to all issues. This bot triages un-triaged issues according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle rotten |
Describe the bug

I'm currently using the 1.0.0 version, and I notice on the changelog that the project switched from request to node-fetch for APIs call. With request I can use HTTP_PROXY and HTTPS_PROXY variables to access to my cluster, but the new package doesn't allowed to do such things. In my research, I've seen a hint of @lselden who is using the
global-agent
package to import the proxy setting. I use it and my client can now reach the kubernetes API, but I have the Unauthorized error, so I suppose that some kubeconfig authorization are not in the forwarded request.Client Version
1.0.0
Server Version
1.31.3
To Reproduce
@kubernetes/client-node
stable version on a nodeJS project behind a proxyglobal-agent
package and bootstrap itmakeApiClient
Expected behavior
The API return the expected information by reaching the cluster
Example Code
Simple code
Environment (please complete the following information):
Additional context

When I use the same kubeconfig file with kubectl, I can access to the cluster
Here I'm on my local WSL, accessing the remote cluster
The text was updated successfully, but these errors were encountered: