Documentation
¶
Index ¶
Constants ¶
View Source
const ( CloudConfigKey = "cloud.conf" Provider = "azure" )
Variables ¶
This section is empty.
Functions ¶
func ReconcileCloudConfig ¶
func ReconcileCloudConfig(cm *corev1.ConfigMap, hcp *hyperv1.HostedControlPlane, credentialsSecret *corev1.Secret) error
ReconcileCloudConfigWithCredentials reconciles as expected by Nodes Kubelet.
func ReconcileCloudConfigWithCredentials ¶
func ReconcileCloudConfigWithCredentials(secret *corev1.Secret, hcp *hyperv1.HostedControlPlane, credentialsSecret *corev1.Secret) error
ReconcileCloudConfigWithCredentials reconciles as expected by KAS/KCM.
Types ¶
type AzureConfig ¶
type AzureConfig struct {
Cloud string `json:"cloud"`
TenantID string `json:"tenantId"`
UseManagedIdentityExtension bool `json:"useManagedIdentityExtension"`
SubscriptionID string `json:"subscriptionId"`
AADClientID string `json:"aadClientId"`
AADClientSecret string `json:"aadClientSecret"`
ResourceGroup string `json:"resourceGroup"`
Location string `json:"location"`
VnetName string `json:"vnetName"`
VnetResourceGroup string `json:"vnetResourceGroup"`
SubnetName string `json:"subnetName"`
SecurityGroupName string `json:"securityGroupName"`
RouteTableName string `json:"routeTableName"`
CloudProviderBackoff bool `json:"cloudProviderBackoff"`
CloudProviderBackoffDuration int `json:"cloudProviderBackoffDuration"`
UseInstanceMetadata bool `json:"useInstanceMetadata"`
LoadBalancerSku string `json:"loadBalancerSku"`
}
AzureConfig is a copy of the relevant subset of the upstream type at https://github.com/kubernetes/kubernetes/blob/30a21e9abdbbeb78d2b7ce59a79e46299ced2742/staging/src/k8s.io/legacy-cloud-providers/azure/azure.go#L123 in order to not pick up the huge amount of transient dependencies that type pulls in.
Click to show internal directories.
Click to hide internal directories.