VMware Telco Cloud Automations posts the customizations to VMConfig and polls for the customization tasks to complete. By default, VMware Telco Cloud Automation waits for 30 minutes before polling at 30-second intervals if the customization is not successful. You can configure this default behavior using the following APIs.

Prerequisites

Run this API on VMware Telco Cloud Automation Manager.

Number of Polls

By default, VMware Telco Cloud Automation polls 60 times. If your customization requires a longer time to complete, you can increase the poll count.
PUT: /admin/hybridity/api/global/settings/InfraAutomation/nodePolicyStatusRetryCount
  {
      "value": 120
  }

Wait Interval Between Each Poll

By default, VMware Telco Cloud Automation waits for 30 seconds between successful polls. If your customization requires a longer time to complete, you can increase the poll interval.
PUT: /admin/hybridity/api/global/settings/InfraAutomation/nodePolicyStatusWaitTime
  {
      "value": 120
  }

Number of Retries on Failure

On failure, VMware Telco Cloud Automation retries the customization task up to 10 times. You can increase the retry count.
PUT: /admin/hybridity/api/global/settings/InfraAutomation/nodePolicyStatusFailureRetryCount
  {
      "value": 30
  }