19 references to WithHttpProbe
Aspire.Hosting.Azure.Tests (10)
AzureAppServiceTests.cs (2)
381.WithHttpProbe(ProbeType.Readiness, "/ready", initialDelaySeconds: 60) // This will be ignored 382.WithHttpProbe(ProbeType.Liveness, "/health");
AzureContainerAppsTests.cs (8)
1846.WithHttpProbe(ProbeType.Readiness, "/ready") 1847.WithHttpProbe(ProbeType.Liveness, "/health"); 1852.WithHttpProbe(ProbeType.Readiness, "/ready", initialDelaySeconds: 60) 1853.WithHttpProbe(ProbeType.Liveness, "/health"); 1888.WithHttpProbe(ProbeType.Liveness, "/health"); 1893.WithHttpProbe(ProbeType.Liveness, "/health"); 1928.WithHttpProbe(ProbeType.Liveness, "/health"); 1933.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)
16resource.WithHttpProbe(ProbeType.Startup, "/health"); 29resource.WithHttpProbe(ProbeType.Readiness, "/health"); 30resource.WithHttpProbe(ProbeType.Readiness, "/ready"); 49resource.WithHttpProbe(ProbeType.Liveness, "/health", endpointName: endpointName); 50resource.WithHttpProbe(ProbeType.Readiness, "/ready", endpointName: endpointName);