1
0
mirror of https://github.com/rancher/rke.git synced 2025-08-22 16:45:57 +00:00

Merge pull request #2580 from Carrefour-Group/feat/add-tags-azure-cloudconfig

This commit is contained in:
Jiaqi Luo 2022-10-06 11:27:02 -07:00 committed by GitHub
commit a4597b3755
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -859,6 +859,8 @@ type AzureCloudProvider struct {
// Excludes master nodes (labeled with `node-role.kubernetes.io/master`) from the backend pool of Azure standard loadbalancer, default(nil) to `true` // Excludes master nodes (labeled with `node-role.kubernetes.io/master`) from the backend pool of Azure standard loadbalancer, default(nil) to `true`
// If want adding the master nodes to ALB, this should be set to `false` and remove the `node-role.kubernetes.io/master` label from master nodes // If want adding the master nodes to ALB, this should be set to `false` and remove the `node-role.kubernetes.io/master` label from master nodes
ExcludeMasterFromStandardLB *bool `json:"excludeMasterFromStandardLB,omitempty" yaml:"excludeMasterFromStandardLB,omitempty"` ExcludeMasterFromStandardLB *bool `json:"excludeMasterFromStandardLB,omitempty" yaml:"excludeMasterFromStandardLB,omitempty"`
// Tags to be added to shared resources: `foo=bar,bar=foo`
Tags string `json:"tags,omitempty" yaml:"tags,omitempty"`
} }
// AWSCloudProvider options // AWSCloudProvider options