We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Is InCluster Auth still working in Version 5 or do I need to provide a Kubeconfig file in my Cluster?
'use strict'; const Api = require('kubernetes-client'); const core = new Api.Core(Api.config.getInCluster()); module.exports.pods = async () => { return await core.namespaces('default').pods.get() .then(result => { return result; }) .catch(err => { logger(err, this); console.info(err, this); return err; }); };
The text was updated successfully, but these errors were encountered:
It should still work. What type of failure are you seeing?
Sorry, something went wrong.
I added an example: #259
Let us know if you continue to have issues.
No branches or pull requests
Is InCluster Auth still working in Version 5 or do I need to provide a Kubeconfig file in my Cluster?
The text was updated successfully, but these errors were encountered: