diff --git a/.azure/applications/web-api-eu/main.bicep b/.azure/applications/web-api-eu/main.bicep index b2301a93c..9726cc300 100644 --- a/.azure/applications/web-api-eu/main.bicep +++ b/.azure/applications/web-api-eu/main.bicep @@ -91,7 +91,7 @@ var probes = [ initialDelaySeconds: 2 type: 'Liveness' httpGet: { - path: '/liveness' + path: '/health/liveness' port: port } } @@ -100,7 +100,7 @@ var probes = [ initialDelaySeconds: 2 type: 'Readiness' httpGet: { - path: '/readiness' + path: '/health/readiness' port: port } } @@ -109,7 +109,7 @@ var probes = [ initialDelaySeconds: 2 type: 'Startup' httpGet: { - path: '/startup' + path: '/health/startup' port: port } } diff --git a/.azure/applications/web-api-so/main.bicep b/.azure/applications/web-api-so/main.bicep index 59b33b164..32942df6f 100644 --- a/.azure/applications/web-api-so/main.bicep +++ b/.azure/applications/web-api-so/main.bicep @@ -95,7 +95,7 @@ var probes = [ initialDelaySeconds: 2 type: 'Liveness' httpGet: { - path: '/liveness' + path: '/health/liveness' port: port } } @@ -104,7 +104,7 @@ var probes = [ initialDelaySeconds: 2 type: 'Readiness' httpGet: { - path: '/readiness' + path: '/health/readiness' port: port } } @@ -113,7 +113,7 @@ var probes = [ initialDelaySeconds: 2 type: 'Startup' httpGet: { - path: '/startup' + path: '/health/startup' port: port } }