Coder Social home page Coder Social logo

Comments (5)

klausenbusk avatar klausenbusk commented on June 27, 2024

Did this fix the issue mentioned in #24 (comment) ?
The code still seems to contain the "broken" logic?

from digitalocean-cloud-controller-manager.

andrewsykim avatar andrewsykim commented on June 27, 2024

@klausenbusk this should have been fixed. What code are you referring to? GetZone()?

from digitalocean-cloud-controller-manager.

klausenbusk avatar klausenbusk commented on June 27, 2024

@klausenbusk this should have been fixed. What code are you referring to? GetZone()?

This code:

func dropletRegion() (string, error) {
return httpGet(dropletRegionMetadataURL)
}
which is used here:
region, err := dropletRegion()
and then passed as arguments here:
instances: newInstances(doClient, region),
zones: newZones(doClient, region),
loadbalancers: newLoadbalancers(doClient, region),

Maybe I just don't understand the code :)

from digitalocean-cloud-controller-manager.

andrewsykim avatar andrewsykim commented on June 27, 2024

The confusion there is how the Zones interface was designed. The GetZone method was originally for kubelets to get their own zones, usually using a meta data service. External cloud controllers have to adopt the same interfaces for compatibility. We technically don't even need to implement that method since it would never be called in our context, but it was used since GetZone was the only method at the time.

In v1.8, GetZoneByProviderID and GetZoneByName were added which is what's really called by cloud controllers upstream. Before v1.8, this was considered a bug as per kubernetes/kubernetes#49308

from digitalocean-cloud-controller-manager.

andrewsykim avatar andrewsykim commented on June 27, 2024

Our implementation for GetZoneByProviderID and GetZoneByName https://github.com/digitalocean/digitalocean-cloud-controller-manager/blob/master/do/zones.go#L43-L70

And the only piece of code using the region field is GetZone https://github.com/digitalocean/digitalocean-cloud-controller-manager/blob/master/do/zones.go#L40 which as I mentioned previously is not really used in our context, might be worthwhile to remove the implementation there altogether to avoid future confusion :)

from digitalocean-cloud-controller-manager.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.