YJWANG

Volume Creation timeout 본문

60.Cloud/60.OpenStack

Volume Creation timeout

왕영주 2021. 6. 29. 15:36

kolla/config 나 kolla로 설치한 서버가 아니라면 compute node의 nova.conf에 아래 내용을 추가하고 nova-compute service를 재시작합니다.

 

nova-compute 서비스 재시작에 기존 실행 중인 VM에 영향은 없으나 재시작 중 실행 /삭제 요청이 왔다면 해당 요청은 Error 발생할 수 있습니다.

 

아래 설정은 Block이 매핑되기까지 1800초 (30분)을 대기하고 실패 시 6번을 retry 한다는 설정입니다.

 

https://docs.openstack.org/ocata/config-reference/compute/config-options.html

 

OpenStack Docs: nova.conf - configuration options

rescue_image_id = None (String) The ID of the image to boot from to rescue data from a corrupted instance. If the rescue REST API operation doesn’t provide an ID of an image to use, the image which is referenced by this ID is used. If this option is not

docs.openstack.org

 

 

# cat /etc/kolla/nova/nova-compute.conf

[DEFAULT]
block_device_allocate_retries = 1800
block_device_allocate_retries_interval = 6
반응형