Skip to content

Commit

Permalink
resource validation checks turned off (#36)
Browse files Browse the repository at this point in the history
resource validation checks turned off
  • Loading branch information
oferchen authored Aug 6, 2024
1 parent f003e77 commit e1082c0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mbx
Original file line number Diff line number Diff line change
Expand Up @@ -238,12 +238,12 @@ deploy() {
echo $env >> $ROOT/boxes/boxes.list

# Clone mgmt server
virt-clone --original $mst --name $env-mgmt1 --file $ROOT/boxes/$env/$env-mgmt1.qcow2
virt-clone --original $mst --name $env-mgmt1 --file $ROOT/boxes/$env/$env-mgmt1.qcow2 --check all=off
echo $env-mgmt1 >> $ROOT/boxes/$env/list
virsh setmaxmem $env-mgmt1 4G --config

# Clone hypervisor host1
virt-clone --original $hyt --name $env-host1 --file $ROOT/boxes/$env/$env-host1.qcow2
virt-clone --original $hyt --name $env-host1 --file $ROOT/boxes/$env/$env-host1.qcow2 --check all=off
echo $env-host1 >> $ROOT/boxes/$env/list
virsh setmaxmem $env-host1 8G --config
if [[ "$hypervisor" == "vmw" ]]; then
Expand All @@ -252,7 +252,7 @@ deploy() {
fi

# Clone hypervisor host2
virt-clone --original $hyt --name $env-host2 --file $ROOT/boxes/$env/$env-host2.qcow2
virt-clone --original $hyt --name $env-host2 --file $ROOT/boxes/$env/$env-host2.qcow2 --check all=off
echo $env-host2 >> $ROOT/boxes/$env/list
virsh setmaxmem $env-host2 8G --config

Expand Down Expand Up @@ -509,7 +509,7 @@ dev() {
echo $env >> $ROOT/boxes/boxes.list

# Clone hypervisor
virt-clone --original $hyt --name $env-host1 --file $ROOT/boxes/$env/$env-host1.qcow2
virt-clone --original $hyt --name $env-host1 --file $ROOT/boxes/$env/$env-host1.qcow2 --check all=off
echo $env-host1 >> $ROOT/boxes/$env/list
virsh setmaxmem $env-host1 8G --config
if [[ "$hypervisor" == "vmw" ]]; then
Expand Down

0 comments on commit e1082c0

Please sign in to comment.