Description
Describe the bug
when trying to add a promiseMiddleware to alter the result (post-query) i receive the the following error message:
You need to define an absolute base url for the server
Client Version
1.0.0
To Reproduce
run the provided typescript snipped
Expected behavior
When no configuration is passed to readNamespace at all it works fine to read the information.
As i do not change the configuration of the Target Server or the authentication in any way the addition of a middleware via the createConfiguration method should not change these values. The resulting config should be the same config that would be used if nothing is passed as explicit config but with the sole addition of the middleware
Example Code
const func = async () => {
const kc = new KubeConfig();
kc.loadFromDefault();
const coreApi = kc.makeApiClient(CoreV1Api)
const getNamespaceInformation = (namespace: string) => {
const promiseMiddleware: PromiseMiddleware = {
pre: (c) => Promise.resolve(c),
post: (c) => Promise.resolve(c),
};
const middleware = new PromiseMiddlewareWrapper(promiseMiddleware);
const config: Configuration = createConfiguration({
middleware: [middleware],
});
return coreApi.readNamespace(
{
name: namespace,
},
config
); // throws
};
const namespaceDetails = await getNamespaceInformation('dev'); // throws
console.log(namespaceDetails );
}
func()
Environment (please complete the following information):
- OS: Windows (WSL)
- Node.js version: v22.14.0
- Cloud runtime: minikube