Skip to content

Announcing Enhanced VCS Integration ๐ŸŽ‰ ๐ŸŽ‰

Read more here โ†’

Proposed run (preview)ยป

Proposed runs are previews of changes that would be applied to your infrastructure if the new code was to somehow become canonical, for example by pushing it to the tracked branch.

Proposed runs are generally triggered by Git push events. By default, whenever a push occurs to any branch other than the tracked branch, a proposed run is started - one for each of the affected stacks. This default behavior can be extensively customized using our push policies.

The purpose of proposed runs is not to make changes to your infrastructure but to merely preview and report them during the planning phase.

Planningยป

Once the workspace is prepared by the Initializing phase, planning runs a vendor-specific preview command and interprets the results. For Terraform that command is terraform plan, for Pulumi - pulumi preview. The result of the planning phase is the collection of currently managed resources and outputs as well as planned changes. This is used as an input to plan policies (optional) and to calculate the delta - always.

Note that the Planning phase can be safely stopped by the user.

On Ansible stacks, this phase can be skipped without execution by setting the SPACELIFT_SKIP_PLANNING environment variable to true in the stack's environment variables.

Plan policiesยป

If any plan policies are attached to the current stack, each of these policies is evaluated to automatically determine whether the change is acceptable according to the rules adopted by your organization. Here is an example of an otherwise successful planning phase that still fails due to policy violations:

You can read more about plan policies here.

Pending Reviewยป

If any plan policy results in a warning and there are approval policies attached, the run will enter a pending review state after planning, in which approval policies will be evaluated. The run will only finish once all approval policies approve.

This is useful to e.g. block pull requests related to a proposed run when the changes made by the run should be reviewed by another team, like security.

Deltaยป

If the planning phase is successful (which includes policy evaluation), Spacelift analyses the diff and counts the resources and outputs that would be added, changed and deleted if the changes were to be applied. Here's one example of one such delta being reported:

Success criteriaยป

The planning phase will fail if:

  • infrastructure definitions are incorrect - eg. malformed, invalid etc.;
  • external APIs (eg. AWS, GCP, Azure etc.) fail when previewing changes;
  • plan policies return one or more deny reasons;
  • a worker node crashes - eg. you kill a private worker node while it's executing the job;

If that happens, the run will transition to the failed state. Otherwise, the proposed run terminates in the finished state.

Reportingยป

The results of proposed runs are reported in multiple ways:

  • always - in VCS, as commit statuses and pull request comments - please refer to GitHub and GitLab documentation for the exact details;
  • through Slack notifications - if set up;
  • through webhooks - if set up;