From 0792c554732db93ca372dbd05c169e8295df5e04 Mon Sep 17 00:00:00 2001 From: Nathan Jenan Date: Mon, 11 Jun 2018 09:03:05 -0700 Subject: [PATCH] Adding virtual network and subnet options to aks cluster config --- apis/management.cattle.io/v3/cluster_types.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apis/management.cattle.io/v3/cluster_types.go b/apis/management.cattle.io/v3/cluster_types.go index 12ddb720..fdc52f1e 100644 --- a/apis/management.cattle.io/v3/cluster_types.go +++ b/apis/management.cattle.io/v3/cluster_types.go @@ -196,6 +196,10 @@ type AzureKubernetesServiceConfig struct { TenantID string `json:"tenantId,omitempty" norman:"required"` // Secret associated with the Client ID ClientSecret string `json:"clientSecret,omitempty" norman:"required,type=password"` + // Virtual network to use for the AKS cluster + VirtualNetwork string `json:"virtualNetwork,omitempty"` + // Subnet to use for the AKS Cluster (must be within the virtual network) + Subnet string `json:"subnet,omitempty"` } type AmazonElasticContainerServiceConfig struct {