AKS traffic manager manages calls to Azure resource manager
Перейти к файлу
dependabot[bot] 2bad8e5219
Bump golang.org/x/net from 0.5.0 to 0.17.0
Bumps [golang.org/x/net](https://github.com/golang/net) from 0.5.0 to 0.17.0.
- [Commits](https://github.com/golang/net/compare/v0.5.0...v0.17.0)

---
updated-dependencies:
- dependency-name: golang.org/x/net
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-10-11 23:12:42 +00:00
.github chore: setup dependabot for version updates 2023-01-18 09:53:53 +08:00
.gitignore Initial commit 2020-03-11 19:52:01 +00:00
AzureStackCloud_China.json Adding support for national clouds 2020-11-09 16:10:55 -08:00
AzureStackCloud_German.json Add national clouds environment configuration file 2020-11-09 10:41:41 -08:00
AzureStackCloud_USGov.json Adding support for national clouds 2020-11-09 16:10:55 -08:00
CODE_OF_CONDUCT.md Initial CODE_OF_CONDUCT.md commit 2020-03-11 12:52:10 -07:00
Dockerfile initial implementation of autothrust 2020-03-11 14:24:32 -07:00
LICENSE Initial LICENSE commit 2020-03-11 12:52:12 -07:00
README.md Update README with clouds specific information 2020-11-09 16:25:06 -08:00
SECURITY.md Initial SECURITY.md commit 2020-03-11 12:52:11 -07:00
autothrust.go chore: set a bigger MaxIdleConnsPerHost 2022-09-30 15:47:28 +08:00
azure-pipelines.yml Update azure-pipelines.yml 2020-03-15 15:23:20 -07:00
azurestackcloud.json add the azurestackcloud configuration file 2020-03-15 20:55:44 -07:00
go.mod Bump golang.org/x/net from 0.5.0 to 0.17.0 2023-10-11 23:12:42 +00:00
go.sum Bump golang.org/x/net from 0.5.0 to 0.17.0 2023-10-11 23:12:42 +00:00
main.go chore: set a bigger MaxIdleConnsPerHost 2022-09-30 15:47:28 +08:00
proxy.go Adding support for national clouds 2020-11-09 16:10:55 -08:00
proxy_test.go fix panic while handling loadbalancer resource type 2020-04-16 22:06:50 -07:00

README.md

AKS traffic manager

AKS traffic manager is a proxy between Azure Kubernetes cluster's cloud provider and Azure resource manager. It helps with throttling related issues by delaying 429 responses from Azure resource manager.

User Guide

All aks clusters already have aks-traffic-manager applied. But you need to manually apply aks traffic manager to aks-engine clusters. At below are the steps:

  1. Log on the master node of your cluster

  2. Download aks-traffic-manager binary:

curl -o aks-traffic-manager -L https://github.com/Azure/aks-traffic-manager/releases/download/v0.3/aks-traffic-manager

chmod a+rx aks-traffic-manager

  1. Download the azurestackcloud.json file:

curl -o /etc/kubernetes/azurestackcloud.json -L https://raw.githubusercontent.com/Azure/aks-traffic-manager/master/azurestackcloud.json

For national clouds, download the cloud specific file and rename to azurestackcloud.json file. For example, for US gov cloud, use AzureStackCloud_USGov.json

  1. Reconfig azure.json to use azure stack:

sed -i 's/AzurePublicCloud/AzureStackCloud/g' /etc/kubernetes/azure.json For national clouds, replace "AzurePublicCloud" above with the cloud name.

  1. Edit /etc/kubernetes/manifests/kube-controller-manager.yaml to include the following environment variable definition:
      env:
        - name: AZURE_ENVIRONMENT_FILEPATH
          value: /etc/kubernetes/azurestackcloud.json
  1. Run aks-traffic-manager ./aks-traffic-manager . Use --cloud argument to specify the current cloud. Default is "AzurePublicCloud". You can also specify national clouds: AZURECHINACLOUD | AZUREGERMANCLOUD| AZUREUSGOVERNMENTCLOUD.

  2. You should now be able to see logs from aks-traffice-manager showing the ARM requests going through the proxy.

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.

When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.