Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update docs for cat pipeline project #140

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,16 @@ artifacts:
files: imagedefinitions.json
```

### YAML Formatting in VSCode
If you are using VSCode, go to your command pallete and run the `Convert Identation to Spaces` command. Afterwards, you will still have to manually indent the `commands` section of each building phase:

```yaml
phases:
pre_build:
commands:
- echo Logging in to Amazon ECR...
```

## TEST A COMMIT

run
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ Pick `0.5vCPU` for task CPU and `1GB` for task memory.
Select `ecsTaskExecutionRole` under task role and task execution role.
Click `Next` and then `Create`.

### Create an ecsTaskExecutionRole
If you don't have this role, you will need to create it.
You can find detailed instructions in aws docs [here](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_execution_IAM_role.html) - scroll down to the section titled `Creating the task execution (ecsTaskExecutionRole) role section` and follow the instructions there.

## DEPLOY TO ECS - CREATE A SERVICE
Click Deploy then `Create Service`.
Expand Down