Skip to content

Commit

Permalink
Revert "chore(service): use correct docker image (#1308)"
Browse files Browse the repository at this point in the history
This reverts commit 462f908.
  • Loading branch information
arealmaas committed Oct 16, 2024
1 parent 462f908 commit 4baf47e
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .azure/applications/service/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ var probes = [
initialDelaySeconds: 2
type: 'Liveness'
httpGet: {
path: '/healthz'
path: '/health/liveness'
port: port
}
}
Expand All @@ -109,7 +109,7 @@ var probes = [
initialDelaySeconds: 2
type: 'Readiness'
httpGet: {
path: '/healthz'
path: '/health/readiness'
port: port
}
}
Expand All @@ -118,7 +118,7 @@ var probes = [
initialDelaySeconds: 2
type: 'Startup'
httpGet: {
path: '/healthz'
path: '/health/startup'
port: port
}
}
Expand Down Expand Up @@ -152,7 +152,9 @@ module containerApp '../../modules/containerApp/main.bicep' = {
name: containerAppName
params: {
name: containerAppName
image: '${baseImageUrl}${serviceName}:${imageTag}'
// todo: make this dynamic based on service name. Using webapi for now.
// image: '${baseImageUrl}${serviceName}:${imageTag}'
image: '${baseImageUrl}webapi:${imageTag}'
location: location
envVariables: containerAppEnvVars
containerAppEnvId: containerAppEnvironment.id
Expand Down

0 comments on commit 4baf47e

Please sign in to comment.