1
0
mirror of https://github.com/rancher/types.git synced 2025-08-31 04:40:56 +00:00

Adding options to AKS spec

Adding options to the AKS config so that options can be passed to support
setting a custom vnet (without these options, a cluster with a custom vnet
will not be functional).

Issue:
https://github.com/rancher/rancher/issues/15135
This commit is contained in:
Nathan Jenan
2018-08-30 11:19:01 -07:00
committed by Craig Jellick
parent 7d0bdbe04a
commit 027ea948bc

View File

@@ -210,6 +210,10 @@ type AzureKubernetesServiceConfig struct {
Subnet string `json:"subnet,omitempty"`
// The resource group that the virtual network is in. If omited it is assumed to match the resource group of the cluster
VirtualNetworkResourceGroup string `json:"virtualNetworkResourceGroup,omitempty"`
// Additional options for setting a custom virtual network
ServiceCIDR string `json:"serviceCidr,omitempty"`
DNSServiceIP string `json:"dnsServiceIp,omitempty"`
DockerBridgeCIDR string `json:"dockerBridgeCidr,omitempty"`
}
type AmazonElasticContainerServiceConfig struct {