viernes, 17 de abril de 2020

Creating Multiple Disk with VMware PowerCLI



Hello Guys,

In this post I'm going to show you how to create multiple disks on Vmware vSphere using VMware PowerCLI:


The command has the next parameters:


New Hard Disk: Start the command
CapacityGB: Capacity in GB
Datastore: The name of the Datastore
StorageFormat: Could Be Thin, Thick or EagerZeroedThick
ScsiController: The name of the scsi controller where we assign the disk.

For more visit:  https://pubs.vmware.com/vsphere-51/index.jsp?topic=%2Fcom.vmware.powercli.cmdletref.doc%2FNew-HardDisk.html

Save the virtual machine in a variable:

$vm=Get-VM -Name VMwareVirtualMachine

One Disk:

New-HardDisk -VM $vm -CapacityGB 1 -Datastore MyDatastore -StorageFormat EagerZeroedThick -Controller "SCSI Controller 1"

Multiple Disks:

ForEach ($HardDisk in (1..6))

      {

          New-HardDisk -VM $vm -CapacityGB 1 -Datastore MyDatastore -               StorageFormat EagerZeroedThick -Controller "SCSI Controller 1"


      }


jueves, 2 de abril de 2020

VMware vSphere 7: My First Experience


Hello Guys,

In this post I will present you my first experience with VMware vSphere 7.

I have to say my first impression was wonderful.


Look this video with the vSAN, DVS and vCenter Server configurations.






Share and be sociable.

Please follow me on twitter @vicentejr86



Installing Kubernetes on RHEL 9

  Hello Guys, In this post I will show you how to install a Kubernetes cluster on RHEL8. Let's Start: Disablle Swapp: sudo swapoff -a Co...