We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6125886 commit f8aca04Copy full SHA for f8aca04
ui/src/views/compute/DeployVM.vue
@@ -1696,8 +1696,10 @@ export default {
1696
deployVmData.clusterid = values.clusterid
1697
deployVmData.hostid = values.hostid
1698
deployVmData.keyboard = values.keyboard
1699
- deployVmData.boottype = values.boottype
1700
- deployVmData.bootmode = values.bootmode
+ if (!this.template?.deployasis) {
+ deployVmData.boottype = values.boottype
1701
+ deployVmData.bootmode = values.bootmode
1702
+ }
1703
deployVmData.dynamicscalingenabled = values.dynamicscalingenabled
1704
if (values.userdata && values.userdata.length > 0) {
1705
deployVmData.userdata = encodeURIComponent(btoa(this.sanitizeReverse(values.userdata)))
0 commit comments