1 write to ExitCode
Aspire.Hosting.Kubernetes (1)
src\Aspire.Hosting\Dcp\Process\ProcessResult.cs (1)
12ExitCode = exitCode;
24 references to ExitCode
Aspire.Hosting.Azure.Kubernetes (3)
AzureKubernetesEnvironmentResource.AksPipeline.cs (3)
458applyExitCode = result.ExitCode; 533exitCode = result.ExitCode; 834return new AzCommandResult(result.ExitCode, stdout.ToString(), stderr.ToString());
Aspire.Hosting.Kubernetes (21)
CertManagerExtensions.cs (4)
478if (result.ExitCode != 0) 482$"kubectl apply for ClusterIssuer '{issuer.Name}' failed with exit code {result.ExitCode}: {errOut}"); 535if (result.ExitCode != 0) 543result.ExitCode,
Deployment\DefaultHelmRunner.cs (1)
38return processResult.ExitCode;
Deployment\HelmDeploymentEngine.cs (1)
703if (processResult.ExitCode != 0)
KubernetesEnvironmentResource.cs (15)
1505if (patchExitResult.ExitCode != 0) 1510gatewayName, discoveredFqdn, patchExitResult.ExitCode); 1565if (result.ExitCode == 0) 1610if (createExitResult.ExitCode != 0) 1612context.Logger.LogWarning("Failed to create bootstrap TLS secret '{SecretName}' (exit code {ExitCode}).", secretName, createExitResult.ExitCode); 1701if (result.ExitCode == 0 && stdout.Count > 0) 1790if (result.ExitCode == 0 && stdout.Count > 0) 1877getExit = (await getResult.WaitAsync(context.CancellationToken).ConfigureAwait(false)).ExitCode; 1941var patchExit = (await patchResult.WaitAsync(context.CancellationToken).ConfigureAwait(false)).ExitCode; 2053if (exitResult.ExitCode != 0 || stdout.Count == 0) 2123if (applyExitResult.ExitCode != 0) 2128applyExitResult.ExitCode); 2202if (result.ExitCode == 0) 2247if (createExitResult.ExitCode != 0) 2249context.Logger.LogWarning("Failed to create bootstrap TLS secret '{SecretName}' (exit code {ExitCode}).", secretName, createExitResult.ExitCode);