AWS CDK:在 运行 'cdk bootstrap' 命令时不构建资产
AWS CDK: Don't build assets when running 'cdk bootstrap' command
我使用 Docker & Dockerfile:
捆绑我的资产
Code.from_docker_build(
path='/path',
build_args={},
)
每次我 运行 cdk deploy
或 cdk bootstrap
都会触发代码捆绑。
- 关于
cdk deploy
动作代码捆绑很有意义。
- 但是在
cdk bootstrap
命令上不应触发代码捆绑。有什么方法可以避免 cdk bootstrap
期间的代码捆绑?
Docs: If issued with no arguments... the cdk bootstrap command synthesizes the current app and bootstraps the environments its stacks will be deployed to.
所以要cdk bootstrap
跳过合成步骤,(a) bootstrap 从应用程序目录外部和 (b) 明确提供帐户和区域:
cdk bootstrap ACCOUNT-NUMBER/REGION # e.g.
cdk bootstrap 1111111111/us-east-1
我使用 Docker & Dockerfile:
捆绑我的资产Code.from_docker_build(
path='/path',
build_args={},
)
每次我 运行 cdk deploy
或 cdk bootstrap
都会触发代码捆绑。
- 关于
cdk deploy
动作代码捆绑很有意义。 - 但是在
cdk bootstrap
命令上不应触发代码捆绑。有什么方法可以避免cdk bootstrap
期间的代码捆绑?
Docs: If issued with no arguments... the cdk bootstrap command synthesizes the current app and bootstraps the environments its stacks will be deployed to.
所以要cdk bootstrap
跳过合成步骤,(a) bootstrap 从应用程序目录外部和 (b) 明确提供帐户和区域:
cdk bootstrap ACCOUNT-NUMBER/REGION # e.g.
cdk bootstrap 1111111111/us-east-1