forked from radius-project/radius
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changes to help debug test failure by using a different pod name
- Loading branch information
Showing
9 changed files
with
146 additions
and
134 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 40 additions & 0 deletions
40
test/functional/shared/cli/testdata/corerp-kubernetes-cli-with-unassociated-resources.bicep
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
import radius as radius | ||
|
||
@description('Specifies the location for resources.') | ||
param location string = 'global' | ||
|
||
@description('Specifies the environment for resources.') | ||
param environment string = 'test' | ||
|
||
@description('Specifies the image to be deployed.') | ||
param magpieimage string | ||
|
||
resource app 'Applications.Core/applications@2023-10-01-preview' = { | ||
name: 'kubernetes-cli-with-unassociated-resources' | ||
location: location | ||
properties: { | ||
environment: environment | ||
} | ||
} | ||
|
||
resource containera 'Applications.Core/containers@2023-10-01-preview' = { | ||
name: 'containera-app-with-unassociated-resources' | ||
location: location | ||
properties: { | ||
application: app.id | ||
container: { | ||
image: magpieimage | ||
} | ||
} | ||
} | ||
|
||
resource containerb 'Applications.Core/containers@2023-10-01-preview' = { | ||
name: 'containerb-app-with-unassociated-resources' | ||
location: location | ||
properties: { | ||
application: app.id | ||
container: { | ||
image: magpieimage | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters