diff --git a/tests/Aspire.Deployment.EndToEnd.Tests/AksStarterDeploymentTests.cs b/tests/Aspire.Deployment.EndToEnd.Tests/AksStarterDeploymentTests.cs index 3b8b1a58bed..88cc136d200 100644 --- a/tests/Aspire.Deployment.EndToEnd.Tests/AksStarterDeploymentTests.cs +++ b/tests/Aspire.Deployment.EndToEnd.Tests/AksStarterDeploymentTests.cs @@ -160,7 +160,7 @@ private async Task DeployStarterTemplateToAksCore(CancellationToken cancellation sequenceBuilder .Type($"az aks update --resource-group {resourceGroupName} --name {clusterName} --attach-acr {acrName}") .Enter() - .WaitForSuccessPrompt(counter, TimeSpan.FromMinutes(3)); + .WaitForSuccessPrompt(counter, TimeSpan.FromMinutes(5)); // Step 7: Configure kubectl credentials output.WriteLine("Step 7: Configuring kubectl credentials..."); diff --git a/tests/Aspire.Deployment.EndToEnd.Tests/AksStarterWithRedisDeploymentTests.cs b/tests/Aspire.Deployment.EndToEnd.Tests/AksStarterWithRedisDeploymentTests.cs index 2da92fa996a..43cad30d999 100644 --- a/tests/Aspire.Deployment.EndToEnd.Tests/AksStarterWithRedisDeploymentTests.cs +++ b/tests/Aspire.Deployment.EndToEnd.Tests/AksStarterWithRedisDeploymentTests.cs @@ -159,7 +159,7 @@ private async Task DeployStarterTemplateWithRedisToAksCore(CancellationToken can sequenceBuilder .Type($"az aks update --resource-group {resourceGroupName} --name {clusterName} --attach-acr {acrName}") .Enter() - .WaitForSuccessPrompt(counter, TimeSpan.FromMinutes(3)); + .WaitForSuccessPrompt(counter, TimeSpan.FromMinutes(5)); // Step 7: Configure kubectl credentials output.WriteLine("Step 7: Configuring kubectl credentials...");