Skip to content

Commit

Permalink
int
Browse files Browse the repository at this point in the history
  • Loading branch information
nithyatsu committed Sep 12, 2023
1 parent 0928d7a commit d2a8628
Showing 1 changed file with 0 additions and 29 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,6 @@ import radius as radius
@description('ID of the Radius environment. Passed in automatically via the rad CLI')
param environment string

@description('Specifies the image of the container resource.')
param magpieimage string

@description('Specifies the location for resources.')
param location string = 'local'


resource demoApplication 'Applications.Core/applications@2022-03-15-privatepreview' = {
name: 'corerp-resources-gateway-failure-app'
properties: {
Expand Down Expand Up @@ -52,25 +45,3 @@ resource demoGateway 'Applications.Core/gateways@2022-03-15-privatepreview' = {
}
}
}


resource demoContainer 'Applications.Core/containers@2022-03-15-privatepreview' = {
name: 'demo-container'
location: location
properties: {
application: demoApplication.id
container: {
image: magpieimage
ports: {
web: {
containerPort: 3000
}
}
readinessProbe: {
kind: 'httpGet'
containerPort: 3000
path: '/healthz'
}
}
}
}

0 comments on commit d2a8628

Please sign in to comment.