-
Notifications
You must be signed in to change notification settings - Fork 4.1k
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
Conversation
How about getting that custom executable to replace |
@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? ( |
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 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. |
@Mergifyio update |
✅ Branch has been successfully updated |
}), | ||
|
||
// Configure CodeBuild to use a drop-in Docker replacement. | ||
codeBuildDefaults: { |
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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.
There was a problem hiding this 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** |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
**Adding to the default CodeBuild image** | |
### Adding to the default CodeBuild image |
}); | ||
``` | ||
|
||
**Using a custom build image** |
There was a problem hiding this comment.
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, |
There was a problem hiding this comment.
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 :).
Sounds good. I'll get to these changes this afternoon or evening after work at the latest.
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. |
Pull request has been modified.
@Mergifyio update |
✅ Branch has been successfully updated |
@Mergifyio update |
✅ Branch has been successfully updated |
$CDK_DOCKER
Needs #22194 to be merged first |
@Mergifyio update |
✅ Branch has been successfully updated |
There was a problem hiding this 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.
Pull Request updated. Dissmissing previous PRLinter Review.
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
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). |
…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
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.aws-cdk/packages/@aws-cdk/core/lib/bundling.ts
Line 523 in 3e55092
Fixes #21836
All Submissions:
Adding new Unconventional Dependencies:
New Features
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