kubernetes-sigs
cloud-provider-azure
Go

Cloud provider for Azure

Last updated Jul 9, 2026
294
Stars
329
Forks
65
Issues
0
Stars/day
Attention Score
89
Language breakdown
No language data available.
Files click to expand
README

Cloud provider for Azure

Go Report Card Coverage Status GitHub stars GitHub stars

Introduction

This repository provides the Azure implementation of the Kubernetes cloud provider interface.

This is the "external" or "out-of-tree" cloud provider for Azure. The "in-tree" cloud provider has been deprecated since v1.20 and only bug fixes are allowed in its Kubernetes repository directory.

Current status

cloud-provider-azure has been GA since v1.0.0. Releases are available from the Microsoft Container Registry (MCR).

The latest release of azure-cloud-controller-manager and azure-cloud-node-manager can be found at

  • mcr.microsoft.com/oss/v2/kubernetes/azure-cloud-controller-manager:v1.34.3
  • mcr.microsoft.com/oss/v2/kubernetes/azure-cloud-node-manager:v1.34.3

Version matrix

(Minor release versions match Kubernetes minor release versions.)

| Kubernetes version | cloud-provider version | cloud-provider branch | |--------------------|------------------------|-----------------------| | master | N/A | master | | v1.y.x | v1.y.z | release-1.y | | v1.33.x | v1.33.z | release-1.33 | | v1.32.x | v1.32.z | release-1.32 | | v1.31.x | v1.31.z | release-1.31 | | v1.30.x | v1.30.z | release-1.30 | | v1.29.x | v1.29.z | release-1.29 | | v1.28.x | v1.28.z | release-1.28 |

AKS version matrix

The table below shows the cloud-controller-manager and cloud-node-manager versions supported in Azure Kubernetes Service (AKS).

| AKS version | cloud-controller-manager version | cloud-node-manager version | |-----------------------------|----------------------------------|----------------------------| | v1.33.x | v1.33.1 | v1.33.0 | | v1.32.x | v1.32.6 | v1.32.5 | | v1.31.x | v1.31.7 | v1.31.6 | | v1.30.x | v1.30.13 | v1.30.12 | | v1.29.x | v1.29.15 | v1.29.15 | | v1.28.x | v1.28.14 | v1.28.14 | | v1.27.x | v1.27.21 | v1.27.20 |

Build

To build the binary for azure-cloud-controller-manager:

make all

To build the Docker image for azure-cloud-controller-manager:

IMAGE_REGISTRY=<registry> make image

For detailed directions on image building, please read here.

Run

To run azure-cloud-controller-manager locally:

azure-cloud-controller-manager \
    --cloud-provider=azure \
    --cluster-name=kubernetes \
    --controllers=*,-cloud-node \
    --cloud-config=/etc/kubernetes/cloud-config/azure.json \
    --kubeconfig=/etc/kubernetes/kubeconfig \
    --allocate-node-cidrs=true \
    --configure-cloud-routes=true \
    --cluster-cidr=10.240.0.0/16 \
    --route-reconciliation-period=10s \
    --leader-elect=true \
    --secure-port=10267 \
    --v=2

To run azure-cloud-node-manager locally:

azure-cloud-node-manager \
    --node-name=$(hostname) \
    --wait-routes=true

It is recommended to run azure-cloud-controller-manager as a Deployment with multiple replicas, or directly with kubelet as static Pods on each control plane Node. See here for an example.

Get more detail at Deploy Cloud Controller Manager.

E2E tests

Please read the following documents for e2e test information:

Documentation

Refer for the documentation of Cloud Provider Azure (documents are hosted in documentation branch).

Contributing

Please see CONTRIBUTING.md for instructions on how to contribute.

Code of conduct

Participation in the Kubernetes community is governed by the Kubernetes Code of Conduct.

License

Apache License 2.0.

🔗 More in this category

© 2026 GitRepoTrend · kubernetes-sigs/cloud-provider-azure · Updated daily from GitHub