Skip to content

Commit 27e42b2

Browse files
committed
Remove concepts, how-tos, and BICEP templates for persistent VMs
1 parent f242957 commit 27e42b2

File tree

7 files changed

+3
-227
lines changed

7 files changed

+3
-227
lines changed

articles/operator-nexus/TOC.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -297,10 +297,6 @@
297297
href: howto-virtual-machine-placement-hints.md
298298
- name: Gather VM Console Data
299299
href: howto-gather-vm-console-data.md
300-
- name: Create data disk
301-
href: howto-deploy-data-disk-bicep.md
302-
- name: Create virtual machine with persistent disks
303-
href: howto-deploy-persistent-vm-bicep.md
304300
- name: Observability
305301
expanded: false
306302
items:

articles/operator-nexus/howto-deploy-data-disk-bicep.md

Lines changed: 0 additions & 55 deletions
This file was deleted.

articles/operator-nexus/howto-deploy-persistent-vm-bicep.md

Lines changed: 0 additions & 59 deletions
This file was deleted.

articles/operator-nexus/includes/virtual-machine/data-disk-bicep-template.bicep

Lines changed: 0 additions & 24 deletions
This file was deleted.

articles/operator-nexus/includes/virtual-machine/data-disk-params.json

Lines changed: 0 additions & 18 deletions
This file was deleted.

articles/operator-nexus/includes/virtual-machine/virtual-machine-bicep-template.bicep

Lines changed: 3 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -61,27 +61,14 @@ param sshPublicKeys array
6161
// keyData: 'string'
6262
// }
6363

64-
@description('The type of the OS disk storage to use.')
65-
@allowed([
66-
'Persistent'
67-
'Ephemeral'
68-
])
69-
param osDisk string = 'Ephemeral'
70-
71-
@description('The size of the virtual machine OS disk in GiB')
72-
param osDiskSizeGiB int = 64
73-
74-
@description('The list of volume attachments to the virtual machine.')
75-
param volumeAttachments array
76-
7764
@description('StorageProfile represents information about OS and (optionally) data disks.')
7865
param storageProfile object = {
7966
osDisk: {
80-
createOption: (empty(osDisk) ? 'Ephemeral' : osDisk)
67+
createOption: 'Ephemeral'
8168
deleteOption: 'Delete'
82-
diskSizeGB: osDiskSizeGiB
69+
diskSizeGB: 64
8370
}
84-
volumeAttachments: (empty(volumeAttachments) ? null : volumeAttachments)
71+
volumeAttachments: []
8572
}
8673

8774
@description('The Base64 encoded cloud-init user data.')

articles/operator-nexus/includes/virtual-machine/virtual-machine-persistent-params.json

Lines changed: 0 additions & 51 deletions
This file was deleted.

0 commit comments

Comments
 (0)