Skip to content

Commit e08ab45

Browse files
committedSep 20, 2024
Update README
1 parent 928bf19 commit e08ab45

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed
 

‎clusterloader2/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ These flags are required for any test to be run.
2626
- kubeconfig - path to the kubeconfig file.
2727
- testconfig - path to the test config file. This flag can be used multiple times
2828
if more than one test should be run.
29-
- provider - Cluster provider, options are: gce, gke, kind, kubemark, aws, local, vsphere, skeleton
29+
- provider - Cluster provider, options are: gce, gke, kind, kubemark, aws, azure, local, vsphere, skeleton
3030

3131
#### Optional
3232

‎clusterloader2/pkg/provider/constants.go

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ package provider
1818

1919
const (
2020
AWSName = "aws"
21+
AKSName = "aks"
2122
AzureName = "azure"
2223
AutopilotName = "autopilot"
2324
EKSName = "eks"

‎clusterloader2/pkg/provider/provider.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ func NewProvider(initOptions *InitOptions) (Provider, error) {
110110
switch initOptions.ProviderName {
111111
case AWSName:
112112
return NewAWSProvider(configs), nil
113-
case AzureName:
113+
case AzureName, AKSName: // AKSName is for backward compatibility.
114114
return NewAzureProvider(configs), nil
115115
case AutopilotName:
116116
return NewAutopilotProvider(configs), nil

0 commit comments

Comments
 (0)