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

feat(assets): support drop-in docker replacements by setting $CDK_DOCKER #21838

Merged
merged 9 commits into from
Sep 23, 2022

Conversation

misterjoshua
Copy link
Contributor

@misterjoshua misterjoshua commented Aug 30, 2022

This PR introduces the ability for users to change the command used for building and publishing Docker images to a drop-in replacement like the Depot Docker shim. To change the docker command, the user provides the alternative command via an environment variable named CDK_DOCKER.

There's already something similar in core's asset bundling, but it applies only to bundling and not to building and publishing Docker image assets.

const prog = process.env.CDK_DOCKER ?? 'docker';

Fixes #21836


All Submissions:

Adding new Unconventional Dependencies:

  • This PR adds new unconventional dependencies following the process described here

New Features

  • Have you added the new feature to an integration test?
    • Did you use yarn integ to deploy the infrastructure and generate the snapshot (i.e. yarn integ without --dry-run)?

By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license

Depends-On: #22194

Sorry, something went wrong.

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
@gitpod-io
Copy link

gitpod-io bot commented Aug 30, 2022

@aws-cdk-automation aws-cdk-automation requested a review from a team August 30, 2022 23:57
@github-actions github-actions bot added feature-request A feature should be added or improved. p2 labels Aug 30, 2022
@misterjoshua misterjoshua marked this pull request as ready for review August 30, 2022 23:59

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
@Hi-Fi
Copy link
Contributor

Hi-Fi commented Aug 31, 2022

How about getting that custom executable to replace docker to asset step's image(s)? Should custom image be used, some installation added to steps or what? I think this should be mentioned in documentation.

@misterjoshua
Copy link
Contributor Author

How about getting that custom executable to replace docker to asset step's image(s)? Should custom image be used, some installation added to steps or what? I think this should be mentioned in documentation.

@Hi-Fi Thanks for your comments, but I need more clarification. Do you mean to suggest we include documentation on installing third-party tools alongside the AWS CDK and instructions on using those tools with the AWS CDK? i.e., a tutorial on installing and using Depot to build Docker image assets? (curl https://... | sh && env CDK_DOCKER=depot-shim cdk deploy)

@Hi-Fi
Copy link
Contributor

Hi-Fi commented Aug 31, 2022

How about getting that custom executable to replace docker to asset step's image(s)? Should custom image be used, some installation added to steps or what? I think this should be mentioned in documentation.

@Hi-Fi Thanks for your comments, but I need more clarification. Do you mean to suggest we include documentation on installing third-party tools alongside the AWS CDK and instructions on using those tools with the AWS CDK? i.e., a tutorial on installing and using Depot to build Docker image assets? (curl https://... | sh && env CDK_DOCKER=depot-shim cdk deploy)

As asset stage is a bit special in pipelines, and it's configuration is just one that is offered. So documentation should have recommendation if to use custom build image with executable included or add installation command to some assetPublishingCodeBuildDefaults.

Using cdk deploy is different thing, as with that there's no need to worry about stages. And in that I don't think it's needed to tell how to install tool needed.

@misterjoshua
Copy link
Contributor Author

How about getting that custom executable to replace docker to asset step's image(s)? Should custom image be used, some installation added to steps or what? I think this should be mentioned in documentation.

@Hi-Fi Thanks for your comments, but I need more clarification. Do you mean to suggest we include documentation on installing third-party tools alongside the AWS CDK and instructions on using those tools with the AWS CDK? i.e., a tutorial on installing and using Depot to build Docker image assets? (curl https://... | sh && env CDK_DOCKER=depot-shim cdk deploy)

As asset stage is a bit special in pipelines, and it's configuration is just one that is offered. So documentation should have recommendation if to use custom build image with executable included or add installation command to some assetPublishingCodeBuildDefaults.

Using cdk deploy is different thing, as with that there's no need to worry about stages. And in that I don't think it's needed to tell how to install tool needed.

@Hi-Fi Thanks for clarifying! I'll take a crack at adding documentation to the CDK Pipelines README as well.

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
@misterjoshua
Copy link
Contributor Author

@Mergifyio update

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
@mergify
Copy link
Contributor

mergify bot commented Sep 6, 2022

update

✅ Branch has been successfully updated

}),

// Configure CodeBuild to use a drop-in Docker replacement.
codeBuildDefaults: {
Copy link
Contributor

Choose a reason for hiding this comment

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

Better to use assetPublishingCodeBuildDefaults at all cases, as that's where assets are built.

Copy link
Contributor Author

@misterjoshua misterjoshua Sep 7, 2022

Choose a reason for hiding this comment

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

True that the prop you mention applies only to the publishing steps and that's where docker image assets are built. But, I'm inclined to think that if a customer is trying to use a drop-in Docker replacement like the Depot Docker shim, they'd first think of using it throughout their CDK app, not just in the asset publishing stage.

For instance, it's not obvious to the caller that aws_lambda.Code.fromDockerBuild() builds a Docker image in synth and not during asset publishing - an example with assetPublishingCodeBuildDefaults fails to cover this case and could result in unexpected behaviour in this light.

That said, assetPublishingCodeBuildDefaults is still available if the customer has a preference.

rix0rrr
rix0rrr previously requested changes Sep 7, 2022
Copy link
Contributor

@rix0rrr rix0rrr left a comment

Choose a reason for hiding this comment

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

I think the CDK_DOCKER feature was mostly intended for testing, but I guess I don't mind supporting this. A couple of doc updates and then this is good to go.

(Sidebar: the more I see and learn about Docker, the less I like supporting it. It seems everyone has very specific opinions on how it should be used in their specific use cases, leading to a proliferation of flags and tweaks that are tough to maintain... 😔)

In CDK Pipelines, the drop-in replacement for the `docker` command must be
included in the CodeBuild environment and configured for your pipeline:

**Adding to the default CodeBuild image**
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
**Adding to the default CodeBuild image**
### Adding to the default CodeBuild image

});
```

**Using a custom build image**
Copy link
Contributor

Choose a reason for hiding this comment

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

👍 on including an example for this, but it feels repetitive and doesn't have a paragraph explaining what it is you're doing or why.

Can you add a descriptive paragraph, and cut out nonessentials from the example? For example, declare the source with declarse const source: CodePipelineSource, pass a symbolic commands array, that kind of thing. Let's try to leave only the most important parts to highlight them.


```ts
const pipeline = new pipelines.CodePipeline(this, 'Pipeline', {
selfMutation: false,
Copy link
Contributor

Choose a reason for hiding this comment

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

Please don't recommend this :).

@misterjoshua
Copy link
Contributor Author

I think the CDK_DOCKER feature was mostly intended for testing, but I guess I don't mind supporting this. A couple of doc updates and then this is good to go.

Sounds good. I'll get to these changes this afternoon or evening after work at the latest.

(Sidebar: the more I see and learn about Docker, the less I like supporting it. It seems everyone has very specific opinions on how it should be used in their specific use cases, leading to a proliferation of flags and tweaks that are tough to maintain... 😔)

Agreed. The CDK really took the bull by the horns by tackling the issue of building/publishing containers. I think a lot of users appreciate the help though, myself included.

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
@mergify mergify bot dismissed rix0rrr’s stale review September 7, 2022 23:31

Pull request has been modified.

@misterjoshua
Copy link
Contributor Author

@Mergifyio update

@mergify
Copy link
Contributor

mergify bot commented Sep 12, 2022

update

✅ Branch has been successfully updated

@misterjoshua
Copy link
Contributor Author

@Mergifyio update

@mergify
Copy link
Contributor

mergify bot commented Sep 21, 2022

update

✅ Branch has been successfully updated

@rix0rrr rix0rrr changed the title feat(assets): support drop-in docker replacements feat(assets): support drop-in docker replacements by setting $CDK_DOCKER Sep 22, 2022
@github-actions github-actions bot added effort/small Small work item – less than a day of effort p1 and removed p2 labels Sep 22, 2022
@rix0rrr
Copy link
Contributor

rix0rrr commented Sep 22, 2022

Needs #22194 to be merged first

@rix0rrr
Copy link
Contributor

rix0rrr commented Sep 23, 2022

@Mergifyio update

@mergify
Copy link
Contributor

mergify bot commented Sep 23, 2022

update

✅ Branch has been successfully updated

Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

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

The Pull Request Linter fails with the following errors:

❌ Features must contain a change to an integration test file and the resulting snapshot.

PRs must pass status checks before we can provide a meaningful review.

@rix0rrr rix0rrr added the pr-linter/exempt-integ-test The PR linter will not require integ test changes label Sep 23, 2022
@github-actions github-actions bot dismissed their stale review September 23, 2022 07:57

Pull Request updated. Dissmissing previous PRLinter Review.

@aws-cdk-automation
Copy link
Collaborator

AWS CodeBuild CI Report

  • CodeBuild project: AutoBuildv2Project1C6BFA3F-wQm2hXv2jqQv
  • Commit ID: 241b324
  • Result: SUCCEEDED
  • Build Logs (available for 30 days)

Powered by github-codebuild-logs, available on the AWS Serverless Application Repository

@mergify
Copy link
Contributor

mergify bot commented Sep 23, 2022

Thank you for contributing! Your pull request will be updated from main and then merged automatically (do not update manually, and be sure to allow changes to be pushed to your fork).

@mergify mergify bot merged commit d52310e into aws:main Sep 23, 2022
homakk pushed a commit to homakk/aws-cdk that referenced this pull request Dec 1, 2022
…CKER` (aws#21838)

This PR introduces the ability for users to change the command used for building and publishing Docker images to a drop-in replacement like the [Depot](https://depot.dev) Docker shim. To change the docker command, the user provides the alternative command via an environment variable named `CDK_DOCKER`.

There's already something similar in `core`'s asset bundling, but it applies only to bundling and not to building and publishing Docker image assets.

https://github.com/aws/aws-cdk/blob/3e55092fb70e0ec74ee7c4144d6e39a29d8757ae/packages/%40aws-cdk/core/lib/bundling.ts#L523

Fixes aws#21836 

----

### All Submissions:

* [x] Have you followed the guidelines in our [Contributing guide?](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md)

### Adding new Unconventional Dependencies:

* [ ] This PR adds new unconventional dependencies following the process described [here](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md/#adding-new-unconventional-dependencies)

### New Features

* [ ] Have you added the new feature to an [integration test](https://github.com/aws/aws-cdk/blob/main/INTEGRATION_TESTS.md)?
	* [ ] Did you use `yarn integ` to deploy the infrastructure and generate the snapshot (i.e. `yarn integ` without `--dry-run`)?

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*

Depends-On: aws#22194
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
effort/small Small work item – less than a day of effort feature-request A feature should be added or improved. p1 pr-linter/exempt-integ-test The PR linter will not require integ test changes
Projects
None yet
Development

Successfully merging this pull request may close these issues.

(assets): support drop-in docker replacements
4 participants