cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
721
Views
0
Helpful
0
Comments
Orf Gelbrich
Cisco Employee
Cisco Employee
Task NameUpdate the system Policy wait time
Description

Prerequisites

Tested on 5.4

CategoryWorkflow
ComponentsvSphere 5.x
User Inputs


Instructions for Regular Workflow Use:

  1. Download the attached .ZIP file below to your computer. *Remember the location of the saved file on your computer.
  2. Unzip the file on your computer. Should end up with a .WFD file.
  3. Log in to UCS Director as a user that has "system-admin" privileges.
  4. Navigate to "Policies-->Orchestration" and click on "Import".
  5. Click "Browse" and navigate to the location on your computer where the .WFD file resides. Choose the .WFD file and click "Open".
  6. Click "Upload" and then "OK" once the file upload is completed. Then click "Next".
  7. Click the "Select" button next to "Import Workflows". Click the "Check All" button to check all checkboxes and then the "Select" button.
  8. Click "Submit".
  9. A new folder should appear in "Policies-->Orchestration" that contains the imported workflow. You will now need to update the included tasks with information about the specific environment.

A thank you goes out to Eric Thirolle for providing this task.

The policy items affected (before):

Snap 2016-04-27 at 08.31.15.png

The task inputs:

Snap 2016-04-27 at 08.38.10.png

The Workflow:

Snap 2016-04-27 at 08.38.32.png

The workflow execution:

Snap 2016-04-27 at 08.39.11.png

The affected policy changed:

Snap 2016-04-27 at 08.42.28.png

The custom task inputs:

Snap 2016-04-27 at 08.43.48.png

The custom task outputs:

Snap 2016-04-27 at 08.44.01.png

The custom code:

Snap 2016-04-27 at 08.44.23.png

Custom Code in ASCII:

importPackage(java.util);

importPackage(java.lang);

importPackage(java.io);

importPackage(com.cloupia.model.cEvent.notify);

importPackage(com.cloupia.model.cIM);

importPackage(com.cloupia.lib.util.mail);

importPackage(com.cloupia.fw.objstore);

importPackage(com.cloupia.lib.util.managedreports);

importPackage(com.cloupia.service.cIM.inframgr.profiles);

importPackage(com.cloupia.service.cIM.inframgr);

importPackage(com.cloupia.service.cIM.inframgr.forms.wizard);

importPackage(com.cloupia.lib.cIaaS.vmware);

var policyName = input.SystemPolicyName;

var NewWaitTime = input.InputWaitTime;

var policyObj = InfraPersistenceUtil.getPrivateCloudSystemProfile(policyName);

policyObj.setWindowsVMMaxBootTime(NewWaitTime);

policyObj.setLinuxVMMaxBootTime(NewWaitTime);

InfraPersistenceUtil.modifyPrivateCloudSystemProfile(policyObj);

output.OutputWindowsWaitTime =  policyObj.getWindowsVMMaxBootTime();

output.OutputLinuxWaitTime =  policyObj.getLinuxVMMaxBootTime();

Getting Started

Find answers to your questions by entering keywords or phrases in the Search bar above. New here? Use these resources to familiarize yourself with the community:

Quick Links