Skip to content
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

Closed
camertron opened this issue Oct 27, 2020 · 4 comments
Closed

Refresh kubeconfig if kuby config changes #40

camertron opened this issue Oct 27, 2020 · 4 comments
Labels
bug Something isn't working good first issue Good for newcomers

Comments

@camertron
Copy link
Member

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

@pandwoter
Copy link

Hello, @camertron, I can work on this.
As I see now in kuby-core repo we have abstract method

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?

@camertron
Copy link
Member Author

@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.

@pandwoter
Copy link

Implemented for all providers

getkuby/kuby-digitalocean#3
getkuby/kuby-eks#3
getkuby/kuby-azure#1

@camertron
Copy link
Member Author

All merged and new versions released. Thank you!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working good first issue Good for newcomers
Projects
None yet
Development

No branches or pull requests

2 participants