From 24e035f600492227401e4f7cae679e0882e68fc7 Mon Sep 17 00:00:00 2001 From: Zadkiel Date: Mon, 21 Jun 2021 16:00:38 +0200 Subject: [PATCH] feat(azure): add tags cloud config field --- types/rke_types.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/types/rke_types.go b/types/rke_types.go index f9ea202c..0f4f822d 100644 --- a/types/rke_types.go +++ b/types/rke_types.go @@ -836,6 +836,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` // 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"` + // Tags to be added to shared resources: `foo=bar,bar=foo` + Tags string `json:"tags,omitempty" yaml:"tags,omitempty"` } // AWSCloudProvider options