Skip to content

Instantly share code, notes, and snippets.

@ob1-sc
Created October 12, 2018 13:50
Show Gist options
  • Select an option

  • Save ob1-sc/5dc4ad61e2e5edb98e55b92b8e49e06e to your computer and use it in GitHub Desktop.

Select an option

Save ob1-sc/5dc4ad61e2e5edb98e55b92b8e49e06e to your computer and use it in GitHub Desktop.
Upload Tile to Ops Manager using om cli
export FILE_NAME="cf-2.2.7-build.8.pivotal" # This is the name of the file (tile) to upload to om
export OM_USER="admin"
export OM_PWD="supersecurepassword"
export OM_TARGET="ops-manager address"
export OM_TIMEOUT=86400 # set a high timeout incase upload takes a while
om -t $OM_TARGET -u $OM_USER -p $OM_PWD -k upload-product -p $FILE_NAME -r $OM_TIMEOUT
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment