mirror of
https://github.com/optim-enterprises-bv/kubernetes.git
synced 2025-11-27 11:53:53 +00:00
Add availability zone support to Azure nodes
This commit is contained in:
@@ -100,7 +100,7 @@ func (i *InstanceMetadata) queryMetadataBytes(path, format string) ([]byte, erro
|
|||||||
|
|
||||||
q := req.URL.Query()
|
q := req.URL.Query()
|
||||||
q.Add("format", format)
|
q.Add("format", format)
|
||||||
q.Add("api-version", "2017-04-02")
|
q.Add("api-version", "2017-12-01")
|
||||||
req.URL.RawQuery = q.Encode()
|
req.URL.RawQuery = q.Encode()
|
||||||
|
|
||||||
resp, err := client.Do(req)
|
resp, err := client.Do(req)
|
||||||
|
|||||||
@@ -408,14 +408,29 @@ func (as *availabilitySet) GetInstanceTypeByNodeName(name string) (string, error
|
|||||||
return string(machine.HardwareProfile.VMSize), nil
|
return string(machine.HardwareProfile.VMSize), nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetZoneByNodeName gets zone from instance view.
|
// GetZoneByNodeName gets availability zone for the specified node. If the node is not running
|
||||||
|
// with availability zone, then it returns fault domain.
|
||||||
func (as *availabilitySet) GetZoneByNodeName(name string) (cloudprovider.Zone, error) {
|
func (as *availabilitySet) GetZoneByNodeName(name string) (cloudprovider.Zone, error) {
|
||||||
vm, err := as.getVirtualMachine(types.NodeName(name))
|
vm, err := as.getVirtualMachine(types.NodeName(name))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return cloudprovider.Zone{}, err
|
return cloudprovider.Zone{}, err
|
||||||
}
|
}
|
||||||
|
|
||||||
failureDomain := strconv.Itoa(int(*vm.VirtualMachineProperties.InstanceView.PlatformFaultDomain))
|
var failureDomain string
|
||||||
|
if vm.Zones != nil && len(*vm.Zones) > 0 {
|
||||||
|
// Get availability zone for the node.
|
||||||
|
zones := *vm.Zones
|
||||||
|
zoneID, err := strconv.Atoi(zones[0])
|
||||||
|
if err != nil {
|
||||||
|
return cloudprovider.Zone{}, fmt.Errorf("failed to parse zone %q: %v", zones, err)
|
||||||
|
}
|
||||||
|
|
||||||
|
failureDomain = as.makeZone(zoneID)
|
||||||
|
} else {
|
||||||
|
// Availability zone is not used for the node, falling back to fault domain.
|
||||||
|
failureDomain = strconv.Itoa(int(*vm.VirtualMachineProperties.InstanceView.PlatformFaultDomain))
|
||||||
|
}
|
||||||
|
|
||||||
zone := cloudprovider.Zone{
|
zone := cloudprovider.Zone{
|
||||||
FailureDomain: failureDomain,
|
FailureDomain: failureDomain,
|
||||||
Region: *(vm.Location),
|
Region: *(vm.Location),
|
||||||
|
|||||||
@@ -211,7 +211,11 @@ func (ss *scaleSet) GetInstanceTypeByNodeName(name string) (string, error) {
|
|||||||
return "", nil
|
return "", nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetZoneByNodeName gets cloudprovider.Zone by node name.
|
// GetZoneByNodeName gets availability zone for the specified node. If the node is not running
|
||||||
|
// with availability zone, then it returns fault domain.
|
||||||
|
// TODO(feiskyer): Add availability zone support of VirtualMachineScaleSetVM
|
||||||
|
// after it is released in Azure Go SDK.
|
||||||
|
// Refer https://github.com/Azure/azure-sdk-for-go/pull/2224.
|
||||||
func (ss *scaleSet) GetZoneByNodeName(name string) (cloudprovider.Zone, error) {
|
func (ss *scaleSet) GetZoneByNodeName(name string) (cloudprovider.Zone, error) {
|
||||||
managedByAS, err := ss.isNodeManagedByAvailabilitySet(name)
|
managedByAS, err := ss.isNodeManagedByAvailabilitySet(name)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|||||||
@@ -18,39 +18,61 @@ package azure
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"encoding/json"
|
"fmt"
|
||||||
"io"
|
"strconv"
|
||||||
"io/ioutil"
|
"strings"
|
||||||
"net/http"
|
|
||||||
"sync"
|
"sync"
|
||||||
|
|
||||||
|
"github.com/golang/glog"
|
||||||
"k8s.io/apimachinery/pkg/types"
|
"k8s.io/apimachinery/pkg/types"
|
||||||
"k8s.io/kubernetes/pkg/cloudprovider"
|
"k8s.io/kubernetes/pkg/cloudprovider"
|
||||||
)
|
)
|
||||||
|
|
||||||
const instanceInfoURL = "http://169.254.169.254/metadata/v1/InstanceInfo"
|
const (
|
||||||
|
faultDomainURI = "v1/InstanceInfo/FD"
|
||||||
|
zoneMetadataURI = "instance/compute/zone"
|
||||||
|
)
|
||||||
|
|
||||||
var faultMutex = &sync.Mutex{}
|
var faultMutex = &sync.Mutex{}
|
||||||
var faultDomain *string
|
var faultDomain *string
|
||||||
|
|
||||||
type instanceInfo struct {
|
// makeZone returns the zone value in format of <region>-<zone-id>.
|
||||||
ID string `json:"ID"`
|
func (az *Cloud) makeZone(zoneID int) string {
|
||||||
UpdateDomain string `json:"UD"`
|
return fmt.Sprintf("%s-%d", strings.ToLower(az.Location), zoneID)
|
||||||
FaultDomain string `json:"FD"`
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetZone returns the Zone containing the current failure zone and locality region that the program is running in
|
// GetZone returns the Zone containing the current availability zone and locality region that the program is running in.
|
||||||
|
// If the node is not running with availability zones, then it will fall back to fault domain.
|
||||||
func (az *Cloud) GetZone(ctx context.Context) (cloudprovider.Zone, error) {
|
func (az *Cloud) GetZone(ctx context.Context) (cloudprovider.Zone, error) {
|
||||||
return az.getZoneFromURL(instanceInfoURL)
|
zone, err := az.metadata.Text(zoneMetadataURI)
|
||||||
|
if err != nil {
|
||||||
|
return cloudprovider.Zone{}, err
|
||||||
|
}
|
||||||
|
|
||||||
|
if zone == "" {
|
||||||
|
glog.V(3).Infof("Availability zone is not enabled for the node, falling back to fault domain")
|
||||||
|
return az.getZoneFromFaultDomain()
|
||||||
|
}
|
||||||
|
|
||||||
|
zoneID, err := strconv.Atoi(zone)
|
||||||
|
if err != nil {
|
||||||
|
return cloudprovider.Zone{}, fmt.Errorf("failed to parse zone ID %q: %v", zone, err)
|
||||||
|
}
|
||||||
|
|
||||||
|
return cloudprovider.Zone{
|
||||||
|
FailureDomain: az.makeZone(zoneID),
|
||||||
|
Region: az.Location,
|
||||||
|
}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// This is injectable for testing.
|
// getZoneFromFaultDomain gets fault domain for the instance.
|
||||||
func (az *Cloud) getZoneFromURL(url string) (cloudprovider.Zone, error) {
|
// Fault domain is the fallback when availability zone is not enabled for the node.
|
||||||
|
func (az *Cloud) getZoneFromFaultDomain() (cloudprovider.Zone, error) {
|
||||||
faultMutex.Lock()
|
faultMutex.Lock()
|
||||||
defer faultMutex.Unlock()
|
defer faultMutex.Unlock()
|
||||||
if faultDomain == nil {
|
if faultDomain == nil {
|
||||||
var err error
|
var err error
|
||||||
faultDomain, err = fetchFaultDomain(url)
|
faultDomain, err = az.fetchFaultDomain()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return cloudprovider.Zone{}, err
|
return cloudprovider.Zone{}, err
|
||||||
}
|
}
|
||||||
@@ -81,24 +103,11 @@ func (az *Cloud) GetZoneByNodeName(ctx context.Context, nodeName types.NodeName)
|
|||||||
return az.vmSet.GetZoneByNodeName(string(nodeName))
|
return az.vmSet.GetZoneByNodeName(string(nodeName))
|
||||||
}
|
}
|
||||||
|
|
||||||
func fetchFaultDomain(url string) (*string, error) {
|
func (az *Cloud) fetchFaultDomain() (*string, error) {
|
||||||
resp, err := http.Get(url)
|
faultDomain, err := az.metadata.Text(faultDomainURI)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
defer resp.Body.Close()
|
|
||||||
return readFaultDomain(resp.Body)
|
|
||||||
}
|
|
||||||
|
|
||||||
func readFaultDomain(reader io.Reader) (*string, error) {
|
return &faultDomain, nil
|
||||||
var instanceInfo instanceInfo
|
|
||||||
body, err := ioutil.ReadAll(reader)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
err = json.Unmarshal(body, &instanceInfo)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
return &instanceInfo.FaultDomain, nil
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user