Skip to content
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 @@ -21,7 +21,8 @@
"Key1=Value1:NoSchedule"
],
"scaleSetPriority": "Low",
"scaleSetEvictionPolicy": "Delete"
"scaleSetEvictionPolicy": "Delete",
"mode": "User"
}
}
},
Expand All @@ -48,7 +49,8 @@
"Key1=Value1:NoSchedule"
],
"scaleSetPriority": "Low",
"scaleSetEvictionPolicy": "Delete"
"scaleSetEvictionPolicy": "Delete",
"mode": "User"
}
}
},
Expand All @@ -74,7 +76,8 @@
"Key1=Value1:NoSchedule"
],
"scaleSetPriority": "Low",
"scaleSetEvictionPolicy": "Delete"
"scaleSetEvictionPolicy": "Delete",
"mode": "User"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@
"2",
"3"
],
"enableNodePublicIP": true
"enableNodePublicIP": true,
"mode": "System"
}
],
"linuxProfile": {
Expand Down Expand Up @@ -101,7 +102,8 @@
"2",
"3"
],
"enableNodePublicIP": true
"enableNodePublicIP": true,
"mode": "System"
}
],
"linuxProfile": {
Expand Down Expand Up @@ -186,7 +188,8 @@
"2",
"3"
],
"enableNodePublicIP": true
"enableNodePublicIP": true,
"mode": "System"
}
],
"linuxProfile": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1427,8 +1427,8 @@
"type": "integer",
"format": "int32",
"maximum": 100,
"minimum": 1,
"description": "Number of agents (VMs) to host docker containers. Allowed values must be in the range of 1 to 100 (inclusive). The default value is 1. ",
"minimum": 0,
"description": "Number of agents (VMs) to host docker containers. Allowed values must be in the range of 0 to 100 (inclusive). The default value is 1. ",
"default": 1
},
"vmSize": {
Expand Down Expand Up @@ -1470,6 +1470,10 @@
"$ref": "#/definitions/AgentPoolType",
"description": "AgentPoolType represents types of an agent pool"
},
"mode": {
"$ref": "#/definitions/AgentPoolMode",
"description": "AgentPoolMode represents mode of an agent pool"
},
"orchestratorVersion": {
"type": "string",
"description": "Version of orchestrator specified when creating the managed cluster."
Expand Down Expand Up @@ -1562,6 +1566,18 @@
},
"description": "AgentPoolType represents types of an agent pool."
},
"AgentPoolMode": {
"type": "string",
"enum": [
"System",
"User"
],
"x-ms-enum": {
"name": "AgentPoolMode",
"modelAsString": true
},
"description": "AgentPoolMode represents mode of an agent pool."
},
"AgentPoolListResult": {
"properties": {
"value": {
Expand Down
1 change: 1 addition & 0 deletions specification/containerservice/resource-manager/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -490,6 +490,7 @@ input-file:
- $(this-folder)/Microsoft.ContainerService/stable/2019-04-30/openShiftManagedClusters.json
- $(this-folder)/Microsoft.ContainerService/stable/2017-07-01/containerService.json
- $(this-folder)/Microsoft.ContainerService/stable/2019-08-01/location.json
- $(this-folder)/Microsoft.ContainerService/stable/2020-03-01/managedClusters.json
- $(this-folder)/Microsoft.ContainerService/stable/2020-02-01/managedClusters.json
- $(this-folder)/Microsoft.ContainerService/stable/2020-01-01/managedClusters.json
- $(this-folder)/Microsoft.ContainerService/stable/2019-11-01/managedClusters.json
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Generate all API versions currently shipped for this package

```yaml $(python) && $(multiapi)
batch:
- tag: pacakge-2020-03-01-only
- tag: package-2020-03-01-only
- tag: package-2020-02-01-only
- tag: package-2020-01-01-only
- tag: package-2019-11-01-only
Expand Down