-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f628a64
commit 0a5fb76
Showing
382 changed files
with
22,621 additions
and
11,098 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -306,7 +306,8 @@ | |
"Keda", | ||
"Kata", | ||
"Mshv", | ||
"Fips" | ||
"Fips", | ||
"Istio" | ||
] | ||
}, | ||
{ | ||
|
9 changes: 3 additions & 6 deletions
9
sdk/containerservice/Azure.ResourceManager.ContainerService/CHANGELOG.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1,360 changes: 833 additions & 527 deletions
1,360
...urceManager.ContainerService/api/Azure.ResourceManager.ContainerService.netstandard2.0.cs
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../Azure.ResourceManager.ContainerService/src/Azure.ResourceManager.ContainerService.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
...ervice/Azure.ResourceManager.ContainerService/src/Custom/ContainerServiceAgentPoolData.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
#nullable disable | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.ComponentModel; | ||
using Azure.Core; | ||
using Azure.ResourceManager.ContainerService.Models; | ||
using Azure.ResourceManager.Models; | ||
|
||
namespace Azure.ResourceManager.ContainerService | ||
{ | ||
/// <summary> | ||
/// A class representing the ContainerServiceAgentPool data model. | ||
/// Agent Pool. | ||
/// </summary> | ||
public partial class ContainerServiceAgentPoolData : ResourceData | ||
{ | ||
/// <summary> This can either be set to an integer (e.g. '5') or a percentage (e.g. '50%'). If a percentage is specified, it is the percentage of the total agent pool size at the time of the upgrade. For percentages, fractional nodes are rounded up. If not specified, the default is 1. For more information, including best practices, see: https://docs.microsoft.com/azure/aks/upgrade-cluster#customize-node-surge-upgrade. </summary> | ||
[EditorBrowsable(EditorBrowsableState.Never)] | ||
public string UpgradeMaxSurge | ||
{ | ||
get => UpgradeSettings is null ? default : UpgradeSettings.MaxSurge; | ||
set | ||
{ | ||
if (UpgradeSettings is null) | ||
UpgradeSettings = new AgentPoolUpgradeSettings(); | ||
UpgradeSettings.MaxSurge = value; | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.