diff --git a/content/microservices/frontend/tabs/copilot.md b/content/microservices/frontend/tabs/copilot.md index b64a890..a8366c4 100644 --- a/content/microservices/frontend/tabs/copilot.md +++ b/content/microservices/frontend/tabs/copilot.md @@ -281,15 +281,17 @@ copilot pipeline init Once again, you will be prompted with a series of questions. Answer the questions with the following answers: -- Which environment would you like to add to your pipeline? Answer: Choose "test" - Which repository would you like to use for your pipeline? Answer: Choose the repo url that matches the code commit repository. It will contain `git-codecommit.` +- What would you like to name this pipeline? Answer: Press `Enter` to use the default name (i.e., `ecsdemo-frontend-main`) +- What type of continuous delivery pipeline is this? Answer: Choose "Workloads" +- Which environment would you like to add to your pipeline? Answer: Choose "test" The core pipeline files will be created in the ./copilot directory. Here is what the output should show: ![init](/images/copilot-pipeline-init.png) -Commit and push the new files to your repo. To get more information about the files that were created, check out the [copilot-cli documentation](https://github.com/aws/copilot-cli/wiki/Pipelines#setting-up-a-pipeline-step-by-step). -In short, we are pushing the deployment manifest (for copilot to use as reference to deploy the service), pipeline.yml (which defines the stages in the pipeline), and the buildspec.yml (contains the build instructions for the service). +Commit and push the new files to your repo. To get more information about the files that were created, check out the [copilot-cli documentation](https://aws.github.io/copilot-cli/docs/concepts/pipelines/). +In short, we are pushing the deployment manifest (for copilot to use as reference to deploy the service), manifest.yml (which defines the stages in the pipeline), and the buildspec.yml (contains the build instructions for the service). ```bash git add copilot diff --git a/static/images/copilot-pipeline-init.png b/static/images/copilot-pipeline-init.png index 422b9bc..4830df5 100644 Binary files a/static/images/copilot-pipeline-init.png and b/static/images/copilot-pipeline-init.png differ diff --git a/static/images/copilot-pipeline-output.png b/static/images/copilot-pipeline-output.png index 3d8fb29..705fc73 100644 Binary files a/static/images/copilot-pipeline-output.png and b/static/images/copilot-pipeline-output.png differ diff --git a/static/images/copilot-pipeline-status.png b/static/images/copilot-pipeline-status.png index 79f8626..00aa486 100644 Binary files a/static/images/copilot-pipeline-status.png and b/static/images/copilot-pipeline-status.png differ