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
would be nice if "Can't connect to the Kubernetes API" would print the actual error instead.
flame/controllers/apps/docker/useKubernetes.js
Line 20 in 3c347c8
unfortunately its just eaten here
The text was updated successfully, but these errors were encountered:
but for anyone finding this issue and wondering what to do:
k exec -ti flame-0 -- /bin/sh /app # node Welcome to Node.js v16.20.1. Type ".help" for more information. const k8s = require('@kubernetes/client-node'); const kc = new k8s.KubeConfig(); kc.loadFromCluster(); const k8sNetworkingV1Api = kc.makeApiClient(k8s.NetworkingV1Api); await k8sNetworkingV1Api.listIngressForAllNamespaces().then((res) => { ingresses = res.body.items; });
this will print the actual error. in my case it was an incorrect rbac
Sorry, something went wrong.
No branches or pull requests
would be nice if "Can't connect to the Kubernetes API" would print the actual error instead.
flame/controllers/apps/docker/useKubernetes.js
Line 20 in 3c347c8
unfortunately its just eaten here
The text was updated successfully, but these errors were encountered: