Search
Roy Atkins

HPE SimpliVity PowerShell Module

May 16, 2019

HPE SimpliVity PowerShell Module

This PowerShell module utilizes the HPE SimpliVity REST API to display information and manage an HPE SimpliVity federation. It works by connecting to any HPE OmniStack virtual controller in your environment. With the release of HPE SimpliVity V4.0.0 and above, you can now also implement and connect to a management virtual appliance, which is recommended.

All cmdlets are written as advanced cmdlets, with comment-based help and the majority have the ability to accept the output from another cmdlet as input. Most cmdlets that show information have parameters to limit the number of objects returned. The cmdlets have been written to adhere to the current recommendations with the REST API. For example, limiting the number of records when returning virtual machines and backup objects.

Most "Get" commands display default properties; use Format-List or Select-Object to show all the properties. For example:

    PS C:\> Connect-SVT -OVC 192.168.1.11 -Credential $Cred
    PS C:\> Get-SVThost
 
    HostName      DataCenterName    ClusterName   FreeSpaceGB    ManagementIP   StorageIP   FederationIP 
    --------      --------------    -----------   -----------    ------------   ---------    ------------
   srvr1.sg.com     SunGod          Production1         2,671    192.168.1.11   192.168.2.1   192.168.3.1
   srvr2.sg.com     SunGod          Production1         2,671    192.168.1.12   192.168.2.2   192.168.3.2
   srvr3.sg.com     SunGod          DR1                 2,671    192.170.1.11   192.170.2.1   192.170.3.1
 
    PS C:\>Get-SVThost -HostName 192.168.1.1 | Select-Object *
 
    PolicyEnabled            : True
    ClusterId                : 3baba7ec-6d02-4fb6-b510-5ce19cd9c1d0
    StorageMask              : 255.255.255.0
    Model                    : HPE SimpliVity 380 Series 4000
    HostName                 : srvr1.sg.com
    .
    .
    .

Latest Update

Refer to the release notes here for more details.

The module contains 58 exported cmdlets, divided into the following feature categories:

Datastore
Backup
Backup Policy
Get-SVTdatastoreCopy-SVTbackupGet-SVTpolicy
Get-SVTdatastoreComputeNodeGet-SVTbackupGet-SVTpolicySchedule
Get-SVTexternalStoreGet-SVTfileNew-SVTpolicy
New-SVTdatastoreLock-SVTbackupNew-SVTpolicyRule
New-SVTexternalStoreNew-SVTbackupRemove-SVTpolicy
Publish-SVTdatastoreRemove-SVTbackupRemove-SVTpolicyRule
Remove-SVTdatastoreRename-SVTbackupRename-SVTpolicy
Remove-SVTexternalStoreRestore-SVTfileResume-SVTpolicy
Resize-SVTdatastoreSet-SVTbackupRetentionSuspend-SVTpolicy
Set-SVTdatastorePolicyStop-SVTbackupUpdate-SVTpolicyRule
Set-SVTexternalStoreUpdate-SVTbackupUniqueSize
Unpublish-SVTdatastore
Cluster & Utility
Host
Virtual Machine
Connect-SVTGet-SVTdiskGet-SVTvm
Get-SVTcapacityGet-SVThardwareGet-SVTvmReplicaSet
Get-SVTclusterGet-SVThostMove-SVTvm
Get-SVTclusterConnectedGet-SVTshutdownStatusNew-SVTclone
Get-SVTmetricGet-SVTthroughputRestore-SVTvm
Get-SVTtaskRemove-SVThostSet-SVTvm
Get-SVTtimezoneStart-SVTshutdownStart-SVTvm
Get-SVTversionStop-SVTshutdownStop-SVTvm
Set-SVTtimezone

Requirements

  • Windows PowerShell V5.1 or PowerShell Core V7.x (PowerShell Core V6.x is not recommended)
  • The IP address and the credentials of an authorized OmniStack user account
  • The module has been tested with HPE SimpliVity V4.0.1 and should be compatible with older versions (but has not been tested).

Installation

  • Install or update the HPESimplivity module from the PowerShell Galllery using the following respective commands:
    PS C:\> Install-Module -Name HPESimpliVity
 # or
    PS C:\> Update-Module -Name HPESimpliVity

The module is signed, so it will work with an execution policy set to 'Remote Signed'.

  • Restart PowerShell to load the module, or type:
    PS C:\> Import-Module HPESimpliVity -Force
  • After this, the module will automatically load in new PowerShell sessions. Issue the following commands to confirm:
    PS C:\> Get-Command -Module HPESimpliVity
    PS C:\> Get-Help Connect-SVT
    PS C:\> Get-Help Get-SVTbackup
  • Once installed, you’re ready to connect to the OmniStack virtual controller or Management Virtual Appliance, as follows:
    PS C:\> $Cred = Get-Credential -Message 'Enter OVC/MVA Credentials'
    PS C:\> Connect-SVT -OVC  -Credential $Cred
    PS C:\> Get-SVThost
  • Or, if you need to run commands in batch (non-interactively), save your credentials to a file first:
    PS C:\> $Cred = Get-Credential -Username 'administrator@vsphere.local' | Export-Clixml .\OVCcred.XML

and then in your script, import the credential:

    PS C:\> $Cred = Import-CLIXML .\OVCcred.XML
    PS C:\> Connect-SVT -OVC  -Credential $Cred
    PS C:\> Get-SVThost

Note: You must login with an admin account (e.g. an account with the vCenter Admin Role for VMware environments).

Known issues with the REST API (HPE SimpliVity V4.0.1)

The API has some documented and undocumented issues:

  • OMNI-69918: GET /virtual_machines fails with OutOfMemoryError. The HPE SimpliVity module limits the number of VMs returned to 8000, as per the recommendation
  • OMNI-46361: REST API GET operations for backup objects and sorting filtering constraints. Comma separated list for filtering backup objects is not supported when connecting to OmniStack Virtual Controllers. Comma separated lists CAN be used when connected to a Management Virtual Appliance. For example, the following commands all work when connected to an MVA:
    PS C:\> Get-SVTbackup -VmName Vm1,Vm2,Vm3
    PS C:\> Get-SVTbackup -Destination Cluster1,Cluster2
    PS C:\> Get-SVTbackup -Destination StoreOnce-Data01,StoreOnce-Data02
    PS C:\> Get-SVTbackup -Datastore DS01,DS02
    PS C:\> Get-SVTbackup -BackupName Test1,Test2
    PS C:\> Get-SVTbackup -BackupState FAILED,SAVING,QUEUED
    PS C:\> Get-SVTbackup -BackupId a9e82f..., bef1bd...
  • Backups stored on external stores cannot be deleted if the VM has been deleted, with a “backup not found” error. This does not apply to backups stored on SimpliVity clusters. This restriction is specific to the API; the CLI command svt-backup-delete works as expected for external store backups.
  • The PUT /policies/policyId/rules/ruleId API call (implemented in Update-SVTpolicyRule) doesn’t work as expected in some circumstances. Changing a rules’ destination is not supported (this is documented). In addition, changing the consistency type to anything other than NONE or DEFAULT doesn’t work. If you attempt to change the consistency type to VSS, for example, the command is ignored. In this scenario, a work around would be to delete the rule entirely from the policy using Remove-SVTpolicyRule and then use New-SVTpolicyRule to create a new rule with the desired destination, consistency type and other settings.
  • Using GET /backups with a specific cluster_id (implemented as Get-SVTbackup –DestinationName ClusterName) will result in both backups located on the specified cluster AND external stores being displayed. This issue only applies when connected to an OVC; calls to an MVA work as expected. In either case, filtering on an external store works as expected (e.g. Get-SVTbackup –DestinationName ExternalStore1)

If you would like to keep up to date with the latest features, please visit the project website on GitHub and subscribe to receive notifications. Updates are published to the PowerShell Gallery at the same time.

Refer to the HPE SimpliVity platform page on HPE DEV for more information. Don't forget to check out our other posts on the HPE DEV blog site or join us on our #simplivity Slack Channel to ask a question.

Related

Ron Dharma

Using Postman with HPE SimpliVity

Nov 9, 2018

HPE Developer Newsletter

Stay in the loop.

Sign up for the HPE Developer Newsletter or visit the Newsletter Archive to see past content.

By clicking on “Subscribe Now”, I agree to HPE sending me personalized email communication about HPE and select HPE-Partner products, services, offers and events. I understand that my email address will be used in accordance with HPE Privacy Statement. You may unsubscribe from receiving HPE and HPE-Partner news and offers at any time by clicking on the Unsubscribe button at the bottom of the newsletter.

For more information on how HPE manages, uses, and protects your personal data please refer to HPE Privacy Statement.