Skip to content
This repository has been archived by the owner on May 5, 2023. It is now read-only.

[AutoPR containerservices/resource-manager] [AKS] remove maxPods default #2940

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -618,7 +618,6 @@ export interface ComputeOperationValue {
* @member {string} [vnetSubnetID] VNet SubnetID specifies the vnet's subnet
* identifier.
* @member {number} [maxPods] Maximum number of pods that can run on a node.
* Default value: 30 .
* @member {string} [osType] OsType to be used to specify os type. Choose from
* Linux and Windows. Default to Linux. Possible values include: 'Linux',
* 'Windows'. Default value: 'Linux' .
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ class ManagedClusterAgentPoolProfile {
* @member {string} [vnetSubnetID] VNet SubnetID specifies the vnet's subnet
* identifier.
* @member {number} [maxPods] Maximum number of pods that can run on a node.
* Default value: 30 .
* @member {string} [osType] OsType to be used to specify os type. Choose
* from Linux and Windows. Default to Linux. Possible values include:
* 'Linux', 'Windows'. Default value: 'Linux' .
Expand Down Expand Up @@ -191,7 +190,6 @@ class ManagedClusterAgentPoolProfile {
maxPods: {
required: false,
serializedName: 'maxPods',
defaultValue: 30,
type: {
name: 'Number'
}
Expand Down