Skip to content

Commit

Permalink
Merge pull request Azure#3 from dagald/bai1rp/dec18-curr
Browse files Browse the repository at this point in the history
adding properties for aks vnet support
  • Loading branch information
msoni3 authored Nov 8, 2018
2 parents 81bb42a + 5185416 commit 1d01828
Showing 1 changed file with 34 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1460,6 +1460,10 @@
"sslConfiguration": {
"description": "SSL configuration",
"$ref": "#/definitions/SslConfiguration"
},
"aksNetworkingConfiguration": {
"description": "AKS networking configuration for vnet",
"$ref": "#/definitions/AksNetworkingConfiguration"
}
}
}
Expand Down Expand Up @@ -1749,6 +1753,36 @@
}
}
},
"AksNetworkingConfiguration": {
"type": "object",
"description": "Advance configuration for AKS networking",
"properties": {
"subnetId": {
"description": "Virtual network subnet resource ID the compute nodes belong to",
"type": "string"
},
"podCidr": {
"pattern": "^([0-9]{1,3}\\.){3}[0-9]{1,3}(\\/([0-9]|[1-2][0-9]|3[0-2]))?$",
"description": "A CIDR notation IP range from which to assign pod IPs when kubenet is used.",
"type": "string"
},
"serviceCidr": {
"pattern": "^([0-9]{1,3}\\.){3}[0-9]{1,3}(\\/([0-9]|[1-2][0-9]|3[0-2]))?$",
"description": "A CIDR notation IP range from which to assign service cluster IPs. It must not overlap with any Subnet IP ranges.",
"type": "string"
},
"dnsServiceIP": {
"pattern": "^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$",
"description": "An IP address assigned to the Kubernetes DNS service. It must be within the Kubernetes service address range specified in serviceCidr.",
"type": "string"
},
"dockerBridgeCidr": {
"pattern": "^([0-9]{1,3}\\.){3}[0-9]{1,3}(\\/([0-9]|[1-2][0-9]|3[0-2]))?$",
"description": "A CIDR notation IP range assigned to the Docker bridge network. It must not overlap with any Subnet IP ranges or the Kubernetes service address range.",
"type": "string"
}
}
},
"ScaleSettings": {
"type": "object",
"description": "scale settings for AML Compute",
Expand Down

0 comments on commit 1d01828

Please sign in to comment.