In Odin Automation 7.2, if there are no published CS/VPS Hosting service plans, you may need to hide CS/VPS tile on Home screen in CCP v2. Do the following to hide a tile:

  1. Log in to the Management Node.

  2. Get ID of the CloudAPI resource by running the following command:

    curl -s -k -E /usr/local/pem/APS/certificates/poa.pem \
    "https://127.0.0.1:6308/aps/2/resources?implementing(http://www.parallels.com/infrastructure/cloud/api)"
    
  3. To hide both CS and VPS tiles, change the configuration of the CloudAPI resource by running the following command:

    cat <<EOF |
    {
    "showHomeTileVPS": false,
    "showHomeTileCS": false
    }
    EOF
    curl --verbose -k -E /usr/local/pem/APS/certificates/poa.pem \
    -H "Content-Type: application/json" \
    -X PUT \
    -d @- \
    "https://127.0.0.1:6308/aps/2/resources/<ID_of_CloudAPI_resource>"
    

"showHomeTileCS": false - hide tile for CS Hosting, true - show tile for CS Hosting. Display of VPS Hosting tile is configured in the same way.

Internal content