19 references to WithHttpProbe
Aspire.Hosting.Azure.Tests (10)
AzureAppServiceTests.cs (2)
458
.
WithHttpProbe
(ProbeType.Readiness, "/ready", initialDelaySeconds: 60) // This will be ignored
459
.
WithHttpProbe
(ProbeType.Liveness, "/health");
AzureContainerAppsTests.cs (8)
1907
.
WithHttpProbe
(ProbeType.Readiness, "/ready")
1908
.
WithHttpProbe
(ProbeType.Liveness, "/health");
1913
.
WithHttpProbe
(ProbeType.Readiness, "/ready", initialDelaySeconds: 60)
1914
.
WithHttpProbe
(ProbeType.Liveness, "/health");
1949
.
WithHttpProbe
(ProbeType.Liveness, "/health");
1954
.
WithHttpProbe
(ProbeType.Liveness, "/health");
1989
.
WithHttpProbe
(ProbeType.Liveness, "/health");
1994
.
WithHttpProbe
(ProbeType.Liveness, "/health");
Aspire.Hosting.Kubernetes.Tests (4)
KubernetesPublisherTests.cs (4)
242
.
WithHttpProbe
(ProbeType.Readiness, "/ready")
243
.
WithHttpProbe
(ProbeType.Liveness, "/health");
248
.
WithHttpProbe
(ProbeType.Readiness,"/ready", initialDelaySeconds: 60)
249
.
WithHttpProbe
(ProbeType.Liveness, "/health");
Aspire.Hosting.Tests (5)
ResourceWithProbeTests.cs (5)
16
resource.
WithHttpProbe
(ProbeType.Startup, "/health");
29
resource.
WithHttpProbe
(ProbeType.Readiness, "/health");
30
resource.
WithHttpProbe
(ProbeType.Readiness, "/ready");
49
resource.
WithHttpProbe
(ProbeType.Liveness, "/health", endpointName: endpointName);
50
resource.
WithHttpProbe
(ProbeType.Readiness, "/ready", endpointName: endpointName);