Advertisement
ioggstream

openstack stack update does not replace a failed node

Jul 7th, 2017
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. ## my stack
  2.  
  3. $ nova list
  4. host-0.example.com 192.168.0.5
  5. host-1.example.com 192.168.0.6
  6.  
  7. hosts are
  8.  
  9. - in a OS::Heat::ResourceGroup
  10. - in a ServerGroup with an anti-affinity policy
  11.  
  12. ## reproduce
  13.  
  14. Delete one node
  15. $ nova delete host-1.example.com
  16. $ nova list
  17. host-0.example.com
  18.  
  19. Stack check correctly detects the missing node (see paste)
  20. $ heat action-check mystack
  21.  
  22. Run stack-update to recover the missing node
  23. $ heat stack-update -x mystack
  24.  
  25.  
  26. ## I expect
  27.  
  28. The stack to be recovered to the original state
  29.  
  30. ## Instead
  31. No more nodes are created.
  32.  
  33. $ nova list
  34. host-0.example.com 192.168.0.11
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement