Update deployment action fails with a timeout error
search cancel

Update deployment action fails with a timeout error

book

Article ID: 314786

calendar_today

Updated On:

Products

VMware Aria Suite

Issue/Introduction

Symptoms:
  • Attempt to update a deployment fails with an error similar to:

Failed to execute update resource <DEPLOYMENT_NAME>: nested exception is io.netty.handler.timeout.ReadTimeoutException (WebClientRequestException)

  • The provisioning service logs located in /services-logs/prelude/provisioning-service-app/file-logs/provisioning-service-app.log contain errors similar to:

YYYY-MM-DD:tt:mm:ss.723Z INFO provisioning [host='provisioning-service-app-59bdddf875-9hpvm' thread='reactor-http-epoll-1' user='tango-blueprint-BFbn2sNpouTDZf9q(user)' org='<ORG_ID>' trace='<TRACE_ID>' parent='<PARENT_ID>' span='<SPAN>'] com.vmware.xenon.common.SpringHostUtils.responseEntityToOperation:956 - [GET http://<IP>:8282/Cloud_Network_1] Service not found response, status code: 404, body: [{"timestamp":1692690955722,"path":"/Cloud_Network_1","status":404,"error":"Not Found","message":"404 NOT_FOUND \"No matching handler\"","requestId":"<REQUEST_ID>","@type":"org.springframework.web.server.ResponseStatusException"

404 NOT_FOUND \"ResourceId '<RESOURCE_ID>' not found.\"","requestId":"<REQUEST_ID>","@type":"org.springframework.web.server.ResponseStatusException"}]

  • Your cloud template is configured with the following network property:

      networks:
        - network: '${resource.Cloud_Network_1.name}'


Environment

VMware vRealize Automation 8.x

Cause

This issue can be caused by an incorrect network property syntax in Cloud Template YAML.

Resolution

To resolve this issue, update cloud template network property syntax from:

      networks:
        - network: '${resource.Cloud_Network_1.name}'

to:

      networks:
        - network: '${resource.Cloud_Network_1.id}'

For more information, see Network, security group, and load balancer resource examples in Automation Assembler.