Skip to content

Commit 1c53e21

Browse files
committed
nit
Signed-off-by: sk593 <shruthikumar@microsoft.com>
1 parent 2e9e587 commit 1c53e21

File tree

2 files changed

+26
-26
lines changed

2 files changed

+26
-26
lines changed

.github/workflows/validate-azure-recipes.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
- name: Set up ORAS
7676
uses: oras-project/setup-oras@22ce207df3b08e061f537244349aac6ae1d214f6
7777
with:
78-
version: '1.2.4'
78+
version: '1.2.2'
7979

8080
- name: Install Radius CLI
8181
run: make install-radius-cli RAD_VERSION="${{ inputs.version || 'edge' }}"

Compute/containers/test/app.bicep

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
extension radius
22
extension containers
3-
extension persistentVolumes
3+
// extension persistentVolumes
44

55
param environment string
66

@@ -17,12 +17,12 @@ resource myContainer 'Radius.Compute/containers@2025-08-01-preview' = {
1717
properties: {
1818
environment: environment
1919
application: app.id
20-
connections: {
21-
data: {
22-
source: myPersistentVolume.id
23-
disableDefaultEnvVars: false
24-
}
25-
}
20+
// connections: {
21+
// data: {
22+
// source: myPersistentVolume.id
23+
// disableDefaultEnvVars: false
24+
// }
25+
// }
2626
containers: {
2727
web: {
2828
image: 'nginx:alpine'
@@ -47,10 +47,10 @@ resource myContainer 'Radius.Compute/containers@2025-08-01-preview' = {
4747
}
4848
}
4949
volumeMounts: [
50-
{
51-
volumeName: 'data'
52-
mountPath: '/app/data'
53-
}
50+
// {
51+
// volumeName: 'data'
52+
// mountPath: '/app/data'
53+
// }
5454
{
5555
volumeName: 'cache'
5656
mountPath: '/tmp/cache'
@@ -108,12 +108,12 @@ resource myContainer 'Radius.Compute/containers@2025-08-01-preview' = {
108108
}
109109
restartPolicy: 'Always'
110110
volumes: {
111-
data: {
112-
persistentVolume: {
113-
resourceId: myPersistentVolume.id
114-
accessMode: 'ReadWriteOnce'
115-
}
116-
}
111+
// data: {
112+
// persistentVolume: {
113+
// resourceId: myPersistentVolume.id
114+
// accessMode: 'ReadWriteOnce'
115+
// }
116+
// }
117117
cache: {
118118
emptyDir: {
119119
medium: 'memory'
@@ -141,11 +141,11 @@ resource myContainer 'Radius.Compute/containers@2025-08-01-preview' = {
141141
}
142142
}
143143

144-
resource myPersistentVolume 'Radius.Compute/persistentVolumes@2025-08-01-preview' = {
145-
name: 'mypersistentvolume'
146-
properties: {
147-
environment: environment
148-
application: app.id
149-
sizeInGib: 1
150-
}
151-
}
144+
// resource myPersistentVolume 'Radius.Compute/persistentVolumes@2025-08-01-preview' = {
145+
// name: 'mypersistentvolume'
146+
// properties: {
147+
// environment: environment
148+
// application: app.id
149+
// sizeInGib: 1
150+
// }
151+
// }

0 commit comments

Comments
 (0)