Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions docs/content/en/docs/feature-status/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Please note that the phases (Incubating, Alpha, Beta, and Stable) are applied to
| Support Istio Mesh | Beta |
| Support SMI Mesh | Incubating |
| Support AWS App Mesh | Incubating |
| [Plan Preview](https://github.com/pipe-cd/pipe/blob/master/docs/rfcs/0005-plan-preview.md) | Incubating |
| [Plan Preview](/docs/user-guide/plan-preview) | Alpha |

### Terraform Deployment

Expand All @@ -44,7 +44,7 @@ Please note that the phases (Incubating, Alpha, Beta, and Stable) are applied to
| Automated Rollback | Beta |
| [Automated Configuration Drift Detection](/docs/user-guide/configuration-drift-detection/) | Incubating |
| [Application Live State](/docs/user-guide/application-live-state/) | Incubating |
| [Plan Preview](https://github.com/pipe-cd/pipe/blob/master/docs/rfcs/0005-plan-preview.md) | Incubating |
| [Plan Preview](/docs/user-guide/plan-preview) | Alpha |

### CloudRun Deployment

Expand All @@ -55,7 +55,7 @@ Please note that the phases (Incubating, Alpha, Beta, and Stable) are applied to
| Automated Rollback | Beta |
| [Automated Configuration Drift Detection](/docs/user-guide/configuration-drift-detection/) | Incubating |
| [Application Live State](/docs/user-guide/application-live-state/) | Incubating |
| [Plan Preview](https://github.com/pipe-cd/pipe/blob/master/docs/rfcs/0005-plan-preview.md) | Incubating |
| [Plan Preview](/docs/user-guide/plan-preview) | Alpha |

### Lambda Deployment

Expand All @@ -66,7 +66,7 @@ Please note that the phases (Incubating, Alpha, Beta, and Stable) are applied to
| Automated Rollback | Alpha |
| [Automated Configuration Drift Detection](/docs/user-guide/configuration-drift-detection/) | Incubating |
| [Application Live State](/docs/user-guide/application-live-state/) | Incubating |
| [Plan Preview](https://github.com/pipe-cd/pipe/blob/master/docs/rfcs/0005-plan-preview.md) | Incubating |
| [Plan Preview](/docs/user-guide/plan-preview) | Alpha |

### Amazon ECS Deployment

Expand All @@ -77,7 +77,7 @@ Please note that the phases (Incubating, Alpha, Beta, and Stable) are applied to
| Automated Rollback | Alpha |
| [Automated Configuration Drift Detection](/docs/user-guide/configuration-drift-detection/) | Incubating |
| [Application Live State](/docs/user-guide/application-live-state/) | Incubating |
| [Plan Preview](https://github.com/pipe-cd/pipe/blob/master/docs/rfcs/0005-plan-preview.md) | Incubating |
| [Plan Preview](/docs/user-guide/plan-preview) | Alpha |

### Piped's Core

Expand Down
54 changes: 54 additions & 0 deletions docs/content/en/docs/user-guide/plan-preview.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
---
title: "Plan preview"
linkTitle: "Plan preview"
weight: 14
description: >
Enables the ability to preview the deployment plan against a given commit before merging.
---

> NOTE: This feature is currently under Alpha status.

In order to help developers review the pull request with a better experience and more confidence to approve it to trigger the actual deployments,

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
In order to help developers review the pull request with a better experience and more confidence to approve it to trigger the actual deployments,
In order to help developers review the pull request with a better experience and more confidence to approve it and trigger the actual deployments,

PipeCD provides a way to preview the deployment plan of all updated applications by that pull request.

Here are what will be included currently in the result of plan-preview process:

- what application will be deployed once the pull request got merged
- what deployment strategy (QUICK_SYNC or PIPELINE_SYNC) will be used
- what resources will be added, deleted, or modified

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit, but up to you 🙆‍♀️

Suggested change
- what application will be deployed once the pull request got merged
- what deployment strategy (QUICK_SYNC or PIPELINE_SYNC) will be used
- what resources will be added, deleted, or modified
- which application will be deployed once the pull request got merged
- which deployment strategy (QUICK_SYNC or PIPELINE_SYNC) will be used
- which resources will be added, deleted, or modified

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍


This feature will available for all application kinds: KUBERNETES, TERRAFORM, CLOUD_RUN, LAMBDA and Amazon ECS.

![](/images/plan-preview-comment.png)
<p style="text-align: center;">
PlanPreview with GitHub actions <a href="https://github.com/pipe-cd/actions-plan-preview">pipe-cd/actions-plan-preview</a>
</p>

## Prerequisites

- Your Pipeds are running at least version `v0.11.0`.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit but it's on you

Suggested change
- Your Pipeds are running at least version `v0.11.0`.
- Your Pipeds are greater than at least `v0.11.0`.

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let me change this to Ensure the version of your Piped is at least v0.11.0.

- Having an API key that has `READ_WRITE` role to authenticate with PipeCD's control-plane. A new key can be generated from `settings/api-key` page of your PipeCD web.

## Usage

Plan-preview result can be requested by using `pipectl` command-line tool as below:

``` console
pipectl plan-preview \
--address={ PIPECD_CONTROL_PLANE_ADDRESS } \
--api-key={ PIPECD_API_KEY } \
--repo-remote-url={ REPO_REMOTE_GIT_SSH_URL } \
--head-branch={ HEAD_BRANCH } \
--head-commit={ HEAD_COMMIT } \
--base-branch={ HEAD_BRANCH }
```

You can run it locally or integrate it to your CI system to run automatically when a new pull request is opened/updated. Use `--help` to see more options.

``` console
pipectl plan-preview --help
```

## GitHub Actions

If you are using GitHub Actions, you can seamlessly integrate our prepared [actions-plan-preview](https://github.com/pipe-cd/actions-plan-preview) to your workflows. This automatically comments the plan-preview result on the pull request when it is opened or updated. You can also trigger to run plan-preview manually by leave a comment `/pipecd plan-preview` on the pull request.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/pipecd plan-preview

🎉

Binary file added docs/static/images/plan-preview-comment.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.