Skip to content

Commit

Permalink
Removing readiness and liveness probes from eshop
Browse files Browse the repository at this point in the history
Signed-off-by: willdavsmith <[email protected]>
  • Loading branch information
willdavsmith committed Jul 29, 2024
1 parent e4320de commit cb76fba
Show file tree
Hide file tree
Showing 10 changed files with 0 additions and 92 deletions.
10 changes: 0 additions & 10 deletions samples/eshop/services/basket.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -61,16 +61,6 @@ resource basket 'Applications.Core/containers@2023-10-01-preview' = {
port: 9103
}
}
livenessProbe: {
kind: 'httpGet'
path: '/liveness'
containerPort: 80
}
readinessProbe: {
kind: 'httpGet'
path: '/hc'
containerPort: 80
}
}

connections: {
Expand Down
10 changes: 0 additions & 10 deletions samples/eshop/services/catalog.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -64,16 +64,6 @@ resource catalog 'Applications.Core/containers@2023-10-01-preview' = {
port: 9101
}
}
livenessProbe: {
kind: 'httpGet'
path: '/liveness'
containerPort: 80
}
readinessProbe: {
kind: 'httpGet'
path: '/hc'
containerPort: 80
}
}
connections: {
sql: {
Expand Down
10 changes: 0 additions & 10 deletions samples/eshop/services/identity.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -52,16 +52,6 @@ resource identity 'Applications.Core/containers@2023-10-01-preview' = {
port: 5105
}
}
livenessProbe: {
kind: 'httpGet'
path: '/liveness'
containerPort: 80
}
readinessProbe: {
kind: 'httpGet'
path: '/hc'
containerPort: 80
}
}
connections: {
redis: {
Expand Down
10 changes: 0 additions & 10 deletions samples/eshop/services/ordering.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -143,16 +143,6 @@ resource orderingsignalrhub 'Applications.Core/containers@2023-10-01-preview' =
port: 5112
}
}
livenessProbe: {
kind: 'httpGet'
path: '/liveness'
containerPort: 80
}
readinessProbe: {
kind: 'httpGet'
path: '/hc'
containerPort: 80
}
}
connections: {
redis: {
Expand Down
10 changes: 0 additions & 10 deletions samples/eshop/services/payment.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,6 @@ resource payment 'Applications.Core/containers@2023-10-01-preview' = {
port: 5108
}
}
livenessProbe: {
kind: 'httpGet'
path: '/liveness'
containerPort: 80
}
readinessProbe: {
kind: 'httpGet'
path: '/hc'
containerPort: 80
}
}
}
}
4 changes: 0 additions & 4 deletions samples/eshop/services/seq.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,6 @@ resource seq 'Applications.Core/containers@2023-10-01-preview' = {
port: 5340
}
}
livenessProbe:{
kind:'tcp'
containerPort:80
}
}
}
}
Expand Down
10 changes: 0 additions & 10 deletions samples/eshop/services/web.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -46,16 +46,6 @@ resource webspa 'Applications.Core/containers@2023-10-01-preview' = {
port: 5104
}
}
livenessProbe: {
kind: 'httpGet'
path: '/liveness'
containerPort: 80
}
readinessProbe: {
kind: 'httpGet'
path: '/hc'
containerPort: 80
}
}
connections: {
redis: {
Expand Down
10 changes: 0 additions & 10 deletions samples/eshop/services/webhooks.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -54,16 +54,6 @@ resource webhooks 'Applications.Core/containers@2023-10-01-preview' = {
port: 5113
}
}
livenessProbe: {
kind: 'httpGet'
path: '/liveness'
containerPort: 80
}
readinessProbe: {
kind: 'httpGet'
path: '/hc'
containerPort: 80
}
}
connections: {
sql: {
Expand Down
14 changes: 0 additions & 14 deletions samples/eshop/services/webshopping.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -47,16 +47,6 @@ resource webshoppingagg 'Applications.Core/containers@2023-10-01-preview' = {
port: 5121
}
}
livenessProbe: {
kind: 'httpGet'
path: '/liveness'
containerPort: 80
}
readinessProbe: {
kind: 'httpGet'
path: '/hc'
containerPort: 80
}
}
connections: {
identity: {
Expand Down Expand Up @@ -96,10 +86,6 @@ resource webshoppingapigw 'Applications.Core/containers@2023-10-01-preview' = {
port: 15202
}
}
livenessProbe: {
kind: 'tcp'
containerPort: 80
}
}
}
}
Expand Down
4 changes: 0 additions & 4 deletions samples/eshop/services/webstatus.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,6 @@ resource webstatus 'Applications.Core/containers@2023-10-01-preview' = {
port: 8107
}
}
livenessProbe: {
kind: 'tcp'
containerPort: 80
}
}
}
}

0 comments on commit cb76fba

Please sign in to comment.