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
Part of #6516
Config offers several static helper methods to instantiate it using different procedures.
At the moment, the fromKubeconfig methods are intricate and confusing, especially the one that accepts a path String parameter:
fromKubeconfig
kubernetes-client/kubernetes-client-api/src/main/java/io/fabric8/kubernetes/client/Config.java
Line 809 in 150c111
Line 814 in 150c111
We should deprecate the one with the kubeconfigPath parameter and provide a convenient fromKubeconfig(Path|File) method.
kubeconfigPath
fromKubeconfig(Path|File)
In the future, this method can be improved to support #6240 by making it variadic.
The text was updated successfully, but these errors were encountered:
manusa
Successfully merging a pull request may close this issue.
Description
Part of #6516
Config offers several static helper methods to instantiate it using different procedures.
At the moment, the
fromKubeconfig
methods are intricate and confusing, especially the one that accepts a path String parameter:kubernetes-client/kubernetes-client-api/src/main/java/io/fabric8/kubernetes/client/Config.java
Line 809 in 150c111
kubernetes-client/kubernetes-client-api/src/main/java/io/fabric8/kubernetes/client/Config.java
Line 814 in 150c111
We should deprecate the one with the
kubeconfigPath
parameter and provide a convenientfromKubeconfig(Path|File)
method.In the future, this method can be improved to support #6240 by making it variadic.
The text was updated successfully, but these errors were encountered: