Skip to content

merging latest chages from dev-adadouche #28

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

Open
wants to merge 11 commits into
base: main
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
9 changes: 0 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,6 @@ yarn-install.log
!.yarn/sdks/
.pnp.*

# yarn asset
yarn-install.log
.yarn
!.yarn/releases/
!.yarn/plugins/
!.yarn/versions/
!.yarn/sdks/
.pnp.*

# CDK asset staging directory
.cdk.staging
cdk.out
Expand Down
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,10 @@ yarn build
First, you will need to deploy the *base ubuntu* image pipeline (`aws4el-ci-pipeline-base-image`).

```bash
cdk deploy aws4el-ci-pipeline-base-image --require-approval never --progress bar
cdk deploy \
aws4el-ci-pipeline-base-image \
--require-approval never \
--progress bar
```

The created pipeline can be found in the AWS console under `Developer Tools > Pipeline - CodePipeline > Pipelines`.
Expand All @@ -100,7 +103,7 @@ Once the pipeline completes and the image is available in the ECR repository, th
To deploy a specific pipeline type, you can use the following CDK deploy command:

```bash
cdk deploy <pipeline-id> --require-approval
cdk deploy <pipeline-id> --require-approval never
```

where **\<pipeline-id\>** can be one or more of the following:
Expand Down Expand Up @@ -164,7 +167,10 @@ Again, the created pipeline can be found in the AWS console under `Developer Too
To deploy _all_ the example pipelines, you can use the CDK deploy command:

```bash
cdk deploy aws4el-ci-pipelines --require-approval never --concurrency 3
cdk deploy \
aws4el-ci-pipelines \
--require-approval never \
--concurrency 3
```

> [!NOTE]
Expand Down
Loading