Skip to main content

Overview

Most Orchestration issues fall into one of five categories: stack creation failures, stacks stuck in progress, template validation errors, resource dependency failures, and nested stack propagation issues. Use the event log as the primary diagnostic tool — it records each resource transition with timestamps and error messages.
Always check the stack event log first: openstack stack event list <stack-name> --nested-depth 5 provides a chronological view of every resource action across all nested stacks.

Troubleshooting Reference

Symptoms: Stack creation stops and the status shows CREATE_FAILED. One or more resources show CREATE_FAILED in the resource list.Diagnosis:
List stack events
Show the specific failed resource
Common causes and resolutions:Recovery: After fixing the root cause, re-deploy the stack. CREATE_FAILED stacks can be deleted and recreated, but cannot be resumed:
Delete failed stack and redeploy
Symptoms: The stack status has not changed from IN_PROGRESS for an extended period (beyond the expected resource creation time).Diagnosis:
Check current resource states
Stream live events
Common causes and resolutions:Force-abort a stuck stack (admin only):
Abandon a stuck stack
stack abandon releases the stack from Orchestration management but does NOT delete the underlying resources. You must clean up instances, volumes, and networks manually.
Symptoms: openstack orchestration template validate returns errors, or the Dashboard rejects the template at upload time.Diagnosis:
Validate template
Common error messages and resolutions:
Use two-space indentation consistently throughout your templates. Tabs are not valid in YAML and will cause parse failures.
Symptoms: A resource fails because a resource it depends on was not yet created, or an attribute reference returns an empty value.Diagnosis:
Show resource detail and status
List resource events
Common causes and resolutions:
Symptoms: A parent stack fails or stalls because a child (nested) stack encounters an error.Diagnosis:
List events across all nested stacks
List nested stacks
Common causes and resolutions:

Diagnostic Command Reference

Key troubleshooting commands

Next Steps

Getting Started

Review stack creation fundamentals and template structure

Template Guide

Correct template syntax, parameter types, and intrinsic functions

Admin Troubleshooting

Engine-level diagnostics and service configuration issues

Resource Types

Verify correct resource type names and property definitions