-
Notifications
You must be signed in to change notification settings - Fork 26
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
Refresh kubeconfig if kuby config changes #40
Comments
Hello, @camertron, I can work on this. def kubeconfig_path
raise NotImplementedError, "please define #{__method__} in #{self.class.name}"
end and particular provider should implements it (example from digital ocean) def kubeconfig_path
@kubeconfig_path ||= File.join(
kubeconfig_dir, "#{environment.app_name.downcase}-kubeconfig.yaml"
)
end So should I implement fix for kuby-core (if so we anyways in need to rewrite this piece in every provider) or we can implement change for all providers in particular? |
@pandwoter awesome, thank you for volunteering! I think it would be best to implement specific changes per provider gem, since each provider accepts a different set of configuration parameters. For example, Linode and DigitalOcean require a cluster ID and access token, but Azure requires a tenant ID, client ID, client secret, subscription ID, resource name, and resource group name. |
Implemented for all providers getkuby/kuby-digitalocean#3 |
All merged and new versions released. Thank you! |
A number of the provider gems will attempt to use old kubeconfig files created for other clusters if the config parameters in kuby.rb change. One possible solution would be to use a hashed version of things like the cluster ID, access token, tenant ID, etc in the file path so any config changes will force a kubeconfig refresh. See: getkuby/kuby-digitalocean#2
The text was updated successfully, but these errors were encountered: