If you want to give this choice to end users where end users those who are requesting for VM's services through vRA 8 can request for the "N" Number of VM's. Let's see how this can be configured in vRA 8?
In vRA 8, Blueprint configuration is possible through YAML code configuration.
1. Login to vRA Portal
2. Create New Blueprint/Modify Existing Blueprint
3. You can drag and drop the required components in design canvas and connect them and then configure the blueprint YAML code like as shown below:
numvms: # This can be any name
type: integer # VM count requires numeric input that's why type is integer
title: Number of VMs # Can be anything
maximum: 5 #if you want to limit maximum number of vm's can be requested
count: ${input.numvms} # This is binding parameter to bind input with count key
In vRA 8, Blueprint configuration is possible through YAML code configuration.
1. Login to vRA Portal
2. Create New Blueprint/Modify Existing Blueprint
3. You can drag and drop the required components in design canvas and connect them and then configure the blueprint YAML code like as shown below:
numvms: # This can be any name
type: integer # VM count requires numeric input that's why type is integer
title: Number of VMs # Can be anything
maximum: 5 #if you want to limit maximum number of vm's can be requested
count: ${input.numvms} # This is binding parameter to bind input with count key
Now if you will request for the new deployment, you cannot request new deployment of more than 5 VMs
No comments:
Post a Comment