-
Notifications
You must be signed in to change notification settings - Fork 305
Create KubernetesClientConfiguration from pre-loaded K8SConfiguration #170
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
Conversation
I've signed the CNCF CLA now. |
@markrendle I think you must have changed line endings or spacing or something? The PR shows a bunch of diffs that don't actually look like diffs and it makes it pretty hard to see the actual changes. Can you see what happened and clean up the diff for easier reviewing? Many thanks! |
(also Travis is failing...) |
@brendandburns Oops, sorry about that. Will fix this afternoon. |
hey @markrendle is this PR still active? Thanks! |
I recently cloned this repo and noticed some files are mixing EOL styles within the same file. It would help if the repo took control and added a |
@gitfool historical reason before |
@gitfool, I'm happy to have someone send a cleanup PR converting to \n line endings... Thanks! |
@markrendle Sent a PR to your PR to rebase it onto latest master (with all the line ending shenanigans hopefully sorted out). RendleLabs#1 If you don't have time/energy to look at this, let me know if it would be okay for me to pick up your original change and recreate it (with appropriate credit of course). |
@itowlson I'd be really happy if you could recreate this, I don't have the bandwidth at the moment. |
Superseded by #213 which rebases this onto latest master. |
Hi. I'm working on a GUI application that loads the
K8SConfiguration
, then createsKubernetesClientConfiguration
instances based on user selection. Since I've already got the config data loaded, it makes sense to be able to create the client config directly from it, so I've added a new static methodBuildConfig
that takes theK8SConfiguration
instance as a parameter. I guess I could have made the existingGetKubernetesClientConfiguration
method public, but I don't like messing with existing API.Oh, I also fixed up a doc comment that was wrong :)