19 references to WithHttpProbe
Aspire.Hosting.Azure.Tests (10)
AzureAppServiceTests.cs (2)
378
.
WithHttpProbe
(ProbeType.Readiness, "/ready", initialDelaySeconds: 60) // This will be ignored
379
.
WithHttpProbe
(ProbeType.Liveness, "/health");
AzureContainerAppsTests.cs (8)
1843
.
WithHttpProbe
(ProbeType.Readiness, "/ready")
1844
.
WithHttpProbe
(ProbeType.Liveness, "/health");
1849
.
WithHttpProbe
(ProbeType.Readiness, "/ready", initialDelaySeconds: 60)
1850
.
WithHttpProbe
(ProbeType.Liveness, "/health");
1885
.
WithHttpProbe
(ProbeType.Liveness, "/health");
1890
.
WithHttpProbe
(ProbeType.Liveness, "/health");
1925
.
WithHttpProbe
(ProbeType.Liveness, "/health");
1930
.
WithHttpProbe
(ProbeType.Liveness, "/health");
Aspire.Hosting.Kubernetes.Tests (4)
KubernetesPublisherTests.cs (4)
240
.
WithHttpProbe
(ProbeType.Readiness, "/ready")
241
.
WithHttpProbe
(ProbeType.Liveness, "/health");
246
.
WithHttpProbe
(ProbeType.Readiness,"/ready", initialDelaySeconds: 60)
247
.
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);