@go-to-k/cdkd 0.236.0 → 0.237.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -3
- package/dist/cli.js +11 -5
- package/dist/cli.js.map +1 -1
- package/dist/{deploy-engine-DqAIXGA_.js → deploy-engine-CX6s1TcX.js} +60 -7
- package/dist/deploy-engine-CX6s1TcX.js.map +1 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/dist/deploy-engine-DqAIXGA_.js.map +0 -1
package/README.md
CHANGED
|
@@ -161,9 +161,10 @@ The installed binary is `cdkd`.
|
|
|
161
161
|
> account before any other command will work — it creates the S3 state
|
|
162
162
|
> bucket (`cdkd-state-{accountId}`) that cdkd uses to track deployed
|
|
163
163
|
> resources, plus cdkd-owned asset storage for the region
|
|
164
|
-
> (`cdkd-assets-{accountId}-{region}` bucket +
|
|
165
|
-
> `cdkd-container-assets-{accountId}-{region}` ECR repo —
|
|
166
|
-
> `--no-assets`; see
|
|
164
|
+
> (by default a `cdkd-assets-{accountId}-{region}` bucket +
|
|
165
|
+
> `cdkd-container-assets-{accountId}-{region}` ECR repo — custom names via
|
|
166
|
+
> `--asset-bucket` / `--container-repo`, skip with `--no-assets`; see
|
|
167
|
+
> [`cdkd bootstrap`](docs/cli-reference.md#cdkd-bootstrap)).
|
|
167
168
|
> This replaces `cdk bootstrap`, which cdkd does not require — see
|
|
168
169
|
> [Prerequisites](#prerequisites).
|
|
169
170
|
|
package/dist/cli.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { a as getLiveRenderer, c as PATTERN_B_RESOURCE_TYPES, d as generateResourceNameWithFallback, f as withSkipPrefix, i as runStackBuffered, n as getLogger, o as PATTERN_B_NAME_OPTIONS, p as withStackName, s as PATTERN_B_NAME_PROPERTIES, u as generateResourceName } from "./logger-BzO-joNR.js";
|
|
3
3
|
import { A as withErrorHandling, C as StackHasActiveImportsError, S as ResourceUpdateNotSupportedError, _ as MissingCdkCliError, a as normalizeAwsTagsToCfn, b as ProvisioningError, f as LocalInvokeBuildError$1, i as matchesCdkPath, k as normalizeAwsError, l as CdkdError, m as LocalStartServiceError, n as isTerminationProtectionPropagationError, o as resolveExplicitPhysicalId, p as LocalMigrateError, r as CDK_PATH_TAG, s as assertRegionMatch, t as disableInstanceApiTermination, v as NestedStackChildDirectDestroyError, w as StackTerminationProtectionError, x as ResourceTimeoutError, y as PartialFailureError } from "./ec2-termination-protection-q-WGWgxa.js";
|
|
4
4
|
import { a as setAwsClients, i as resetAwsClients, r as getAwsClients, t as AwsClients } from "./aws-clients-B15NAPbL.js";
|
|
5
|
-
import { $ as
|
|
5
|
+
import { $ as getDockerCmd, A as DiffCalculator, B as buildAssetRedirectMap, C as findActionableSilentDrops, Ct as resolveBucketRegion, D as refStateLookupFromResource, E as cfnRefValueFromPhysicalId, F as rebuildClientForBucketRegion, G as BOOTSTRAP_MARKER_PREFIX, H as loadPublishableAssetManifest, I as shouldRetainResource, J as parseBootstrapMarker, K as ensureAssetStorage, L as AssetPublisher, M as TemplateParser, N as LockManager, O as WAFv2WebACLProvider, P as S3StateBackend, Q as formatDockerLoginError, R as stringifyValue, S as ProviderRegistry, T as IntrinsicFunctionResolver, U as rewriteTemplateAssetReferences, V as createAssetRedirectResolver, W as AssetModeResolver, X as validateContainerRepoName, Y as validateAssetBucketName, Z as buildDockerImage, _ as green, _t as CFN_TEMPLATE_URL_LIMIT, a as withRetry, at as synthesisStatusMessage, b as IAMRoleProvider, bt as uploadCfnTemplate, c as computeImplicitDeleteEdges, ct as resolveApp, d as isStatefulRecreateTargetSync, dt as resolveSkipPrefix, et as runDockerForeground, f as renderStatefulReason, ft as resolveStateBucketWithDefault, g as gray, gt as CFN_TEMPLATE_BODY_LIMIT, h as cyan, ht as warnDeprecatedNoPrefixCliFlag, i as withResourceDeadline, it as Synthesizer, j as DagBuilder, k as applyRoleArnIfSet, l as extractDeploymentEventError, lt as resolveAutoAssetStorage, m as bold, mt as resolveUseCdkBootstrapAssets, n as DEFAULT_RESOURCE_WARN_AFTER_MS, nt as AssetManifestLoader, o as isRetryableTransientError, ot as getDefaultStateBucketName, p as formatResourceLine, pt as resolveStateBucketWithDefaultAndSource, q as getBootstrapMarkerKey, r as DeployEngine, rt as getDockerImageBySourceHash, s as IMPLICIT_DELETE_DEPENDENCIES, st as getLegacyStateBucketName, t as DEFAULT_RESOURCE_TIMEOUT_MS, tt as runDockerStreaming, u as MULTI_REGION_RECREATE_BLOCKED_TYPES, ut as resolveCaptureObservedState, v as red, vt as MIGRATE_TMP_PREFIX, w as CloudControlProvider, x as collectInlinePolicyNamesManagedBySiblings, xt as AssemblyReader, y as yellow, yt as findLargeInlineResources, z as WorkGraph } from "./deploy-engine-CX6s1TcX.js";
|
|
6
6
|
import { t as expectedOwnerParam } from "./expected-bucket-owner-BjEfUnkA.js";
|
|
7
7
|
import { t as ASGProvider } from "./asg-provider-Dbl1_mwT.js";
|
|
8
8
|
import { AsyncLocalStorage } from "node:async_hooks";
|
|
@@ -1049,7 +1049,9 @@ async function bootstrapCommand(options) {
|
|
|
1049
1049
|
stateBackend,
|
|
1050
1050
|
accountId,
|
|
1051
1051
|
region,
|
|
1052
|
-
force: options.force
|
|
1052
|
+
force: options.force,
|
|
1053
|
+
...options.assetBucket && { assetBucketName: options.assetBucket },
|
|
1054
|
+
...options.containerRepo && { containerRepoName: options.containerRepo }
|
|
1053
1055
|
});
|
|
1054
1056
|
} finally {
|
|
1055
1057
|
ecrClient.destroy();
|
|
@@ -1076,8 +1078,9 @@ async function bootstrapCommand(options) {
|
|
|
1076
1078
|
* Create bootstrap command
|
|
1077
1079
|
*/
|
|
1078
1080
|
function createBootstrapCommand() {
|
|
1079
|
-
const cmd = new Command("bootstrap").description("Bootstrap cdkd by creating the S3 state bucket plus cdkd-owned asset storage (asset bucket + container-asset ECR repo) for the region. With --destroy, tear down the region's asset storage instead (issue #1010).").option("--state-bucket <bucket>", "Name of S3 bucket to create for state storage (default: cdkd-state-{accountId})").option("--force", "Create: force reconfiguration of an existing bucket. Destroy: delete the asset storage even when deployed stacks still reference it", false).option("--no-assets", "Skip cdkd asset storage (asset bucket / ECR repo / marker) — deploys keep publishing assets to the CDK bootstrap bucket/repo").option("--destroy", "Tear down the region's cdkd asset storage (empty + delete the asset bucket, force-delete the container-asset ECR repo, then delete the bootstrap marker last). The state bucket is kept unless --include-state-bucket is also passed", false).option("--include-state-bucket", "With --destroy: also delete the S3 state bucket. Refused while any stack state exists or any other region is still opted in to asset storage", false).addOption(new Option("--region <region>", "AWS region in which to create the state bucket (defaults to AWS_REGION env or us-east-1)")).action(withErrorHandling(async (options) => {
|
|
1081
|
+
const cmd = new Command("bootstrap").description("Bootstrap cdkd by creating the S3 state bucket plus cdkd-owned asset storage (asset bucket + container-asset ECR repo) for the region. With --destroy, tear down the region's asset storage instead (issue #1010).").option("--state-bucket <bucket>", "Name of S3 bucket to create for state storage (default: cdkd-state-{accountId})").option("--force", "Create: force reconfiguration of an existing bucket. Destroy: delete the asset storage even when deployed stacks still reference it", false).option("--no-assets", "Skip cdkd asset storage (asset bucket / ECR repo / marker) — deploys keep publishing assets to the CDK bootstrap bucket/repo").option("--asset-bucket <name>", "Custom name for the cdkd asset bucket (default: cdkd-assets-{accountId}-{region}). Written into the bootstrap marker; re-bootstrapping a region with a different name is refused").option("--container-repo <name>", "Custom name for the container-asset ECR repository (default: cdkd-container-assets-{accountId}-{region}). Written into the bootstrap marker; re-bootstrapping a region with a different name is refused").option("--destroy", "Tear down the region's cdkd asset storage (empty + delete the asset bucket, force-delete the container-asset ECR repo, then delete the bootstrap marker last). The state bucket is kept unless --include-state-bucket is also passed", false).option("--include-state-bucket", "With --destroy: also delete the S3 state bucket. Refused while any stack state exists or any other region is still opted in to asset storage", false).addOption(new Option("--region <region>", "AWS region in which to create the state bucket (defaults to AWS_REGION env or us-east-1)")).action(withErrorHandling(async (options) => {
|
|
1080
1082
|
if (options.destroy) {
|
|
1083
|
+
if (options.assetBucket !== void 0 || options.containerRepo !== void 0) throw new CdkdError("--asset-bucket / --container-repo cannot be combined with --destroy. The teardown reads the region's asset storage names from the bootstrap marker.", "INVALID_OPTIONS");
|
|
1081
1084
|
if (!options.assets) throw new CdkdError("--no-assets cannot be combined with --destroy. The teardown scope is the asset storage itself; use --include-state-bucket to also delete the state bucket.", "INVALID_OPTIONS");
|
|
1082
1085
|
await bootstrapDestroyCommand({
|
|
1083
1086
|
...options.stateBucket && { stateBucket: options.stateBucket },
|
|
@@ -1092,6 +1095,9 @@ function createBootstrapCommand() {
|
|
|
1092
1095
|
return;
|
|
1093
1096
|
}
|
|
1094
1097
|
if (options.includeStateBucket) throw new CdkdError("--include-state-bucket requires --destroy (it opts the state bucket into the teardown).", "INVALID_OPTIONS");
|
|
1098
|
+
if (!options.assets && (options.assetBucket !== void 0 || options.containerRepo !== void 0)) throw new CdkdError("--asset-bucket / --container-repo cannot be combined with --no-assets (the flags name the asset storage that --no-assets skips).", "INVALID_OPTIONS");
|
|
1099
|
+
if (options.assetBucket !== void 0) validateAssetBucketName(options.assetBucket);
|
|
1100
|
+
if (options.containerRepo !== void 0) validateContainerRepoName(options.containerRepo);
|
|
1095
1101
|
await bootstrapCommand(options);
|
|
1096
1102
|
}));
|
|
1097
1103
|
commonOptions.forEach((opt) => cmd.addOption(opt));
|
|
@@ -1855,7 +1861,7 @@ const FLUSH_INTERVAL_MS = 2e3;
|
|
|
1855
1861
|
const FLUSH_EVENT_THRESHOLD = 50;
|
|
1856
1862
|
/** Build-time cdkd version, with a dev fallback for non-built contexts. */
|
|
1857
1863
|
function getCdkdVersion() {
|
|
1858
|
-
return "0.
|
|
1864
|
+
return "0.237.0";
|
|
1859
1865
|
}
|
|
1860
1866
|
/**
|
|
1861
1867
|
* Generate a time-sortable unique run id, e.g.
|
|
@@ -56404,7 +56410,7 @@ function reorderArgs(argv) {
|
|
|
56404
56410
|
async function main() {
|
|
56405
56411
|
installPipeCloseHandler();
|
|
56406
56412
|
const program = new Command();
|
|
56407
|
-
program.name("cdkd").description("CDK Direct - Deploy AWS CDK apps directly via SDK/Cloud Control API").version("0.
|
|
56413
|
+
program.name("cdkd").description("CDK Direct - Deploy AWS CDK apps directly via SDK/Cloud Control API").version("0.237.0");
|
|
56408
56414
|
program.addCommand(createBootstrapCommand());
|
|
56409
56415
|
program.addCommand(createSynthCommand());
|
|
56410
56416
|
program.addCommand(createListCommand());
|