I may not understand correctly the purpose of your message above but you're talking for example about using CloudInit to customize the VM but because it's an empty VM, without any OS, I just don't understand 😅
Original Message:
Sent: Oct 22, 2024 02:31 AM
From: tarek_nader
Subject: Create empty VM from Aria Automation Assembler
@LuluTchab
Yes I have read it, as I said you can create dummy empty VM from vSphere, then in from vRA Assembler, in 'Cloud Template customization' you can use this dummy VM template to create a VM with no OS with all customizations [VM's Advanced options / vApp options,...etc] you need.
I have created something like this before.
Use case was to provide an empty appliance to be provisioned by vRA, then another team will shutdown & replace it with vendor appliance with the same configurations [DNS, Name, IP,...etc]; I know it's useless; but required from another team so, we have to think out-of-the-box
------------------------------
Tarek Nader
www.linkedin.com/in/tnader-70853361
Original Message:
Sent: Oct 22, 2024 01:16 AM
From: LuluTchab
Subject: Create empty VM from Aria Automation Assembler
@tarek_nader
thank you for the answer but if you read the question again, it was about an "empty VM", so just the shell, nothing inside, and no customization at all 😉
Original Message:
Sent: Oct 19, 2024 07:28 AM
From: tarek_nader
Subject: Create empty VM from Aria Automation Assembler
Hi @svdb
1- You have to use vSphere Customizations to make any customization for vSphere VM
Or
- Use vRA Cloud Template customization.
2- For template used, you have to install both VMTools & Cloud-init [For Linux VM] / Cloudbase-init [For Windows VM] & make CD-ROM option "Path-through" (Mandatory)
3- For compatibility between vRA 8.18.1 &vSphere 7 U3, they are compatible as shown below

------------------------------
Tarek Nader
www.linkedin.com/in/tnader-70853361
Original Message:
Sent: Oct 18, 2024 11:12 AM
From: svdb
Subject: Create empty VM from Aria Automation Assembler
I have tried this but it fails at the point that the VM will start:
Customization of the guest operating system is not supported due to the given reason: Tools is not installed in the GuestOS. Please install the latest version of open-vm-tools or VMware Tools to enable GuestCustomization.
The used template doesn't contains an OS, only a mounted DVD to install is from scretch.
It looks it do the customisation first, but never in my blueprint is that configured.
Original Message:
Sent: Oct 18, 2024 02:26 AM
From: A_Mikkelsen
Subject: Create empty VM from Aria Automation Assembler
I deploy Empty VMs within minutes.
Sounds like your long wait is due to Automation waiting for Tools to report back hostname and IP.
You can skip this by adding the following to your YAML
awaitIp: false
awaitHostName: false
If you require the new VM, NOT to PowerOn, this can be done using a Subscription (for 'Compute initial power on') and an ABX containing
-----
def handler(context, inputs):
output = inputs
if inputs["customProperties"]["testPowerOn"] == "no":
output['initialPowerOn'] = 'false'
return output
----
Hope this helps
\\Anders
Original Message:
Sent: Oct 16, 2024 10:43 AM
From: DizzyMurloc
Subject: Create empty VM from Aria Automation Assembler
Hello everyone,
I am migrating the service catalog from vRA7 to Aria Automation 8.16.
One of the vRA7 services creates an empty VM with the following build information:
- Blueprint type: Server
- Action: Create
- Provisioning workflow: BasicVmWorkflow
I am having problems migrating this service to Aria Automation, because in the cloud template it is not possible to define a Cloud.vSphere.Machine object with the empty image property.
As a possible solution, I have created an empty VM template in vCenter, which is the one I use as image in the cloud template. However, it takes more than 20 minutes to deploy the VM, as it waits for a long time in the CREATE_IN_PROGRESS stage of the Cloud.vSphere.Machine object.
Is there any way to do this in a more efficient way?
Greetings.