Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Connect to Your LSF Head Node

During Early Access, integreation requires a handful of commands and To integrate Infrastructure Optimizer to your LSF cluster we need to update the configuration and add assets to perform the integration tasks. To complete this root or sudo access on the LSF Master Nodenode is required.

  1. Get a shell on the head node and navigate to the LSF_TOP directory.

    1. Code Block
      cd $LSF_TOP/conf/resource_connector
  2. Make subdirectories here:

    1. Code Block
      mkdir -p exostellar/json exostellar/conf exostellar/scripts
      cd exostellar/json

...

  1. Add a line to the Resource Definitions in lsb.shared:

    1. Code Block
      cd ${LSF_TOP}/conf
      vi lsb.shared
  2. Example before modification:

    1. Code Block
      Begin Resource
      RESOURCENAME  TYPE    INTERVAL INCREASING  DESCRIPTION        # Keywords
      
         awshost    Boolean    ()       ()       (instances from AWS)
         vm_type     String  ()      ()          (vm types for different templates)
         templateID   String   ()       ()       (template ID for the external hosts)
      End Resource
  3. Examples with the required line added:

    1. Code Block
      Begin Resource
      RESOURCENAME  TYPE    INTERVAL INCREASING  DESCRIPTION        # Keywords
      
         awshost    Boolean    ()       ()       (instances from AWS)
         xiohost    Boolean    ()       ()       (instances from Infrastructure Optimizer)
         vm_type     String  ()      ()          (vm types for different templates)
         templateID   String   ()       ()       (template ID for the external hosts)
      End Resource

Compute AMI

...

Import

During Prepping the LSF Integration an AMI for compute nodes was identified or created. This step will import that AMI into Infrastructure Optimizer. Ideally, this AMI is capable of booting quickly.

...