[CLI] display issues with new deployment monitoring in the CDK CLI
See original GitHub issue_Originally posted by @robertd in https://github.com/aws/aws-cdk/pull/8165#issuecomment-647178526_
It’s not working really well on iTerm2 with zsh (using robbierussel/oh-my-zsh)?
Is there a way to use more verbose output (~for CI/CD purposes too~)?
➜ sipp-api-cdk git:(master) ✗ cdk deploy
SippApiStack: deploying...
SippApiStack: creating CloudFormation changeset...
✅ SippApiStack
Outputs:
SippApiStack.ServiceServiceURL250C0FB6 = https://sipp-api-alb.acme.com
SippApiStack.ServiceLoadBalancerDNSEC5B149E = internal-SippA-Servi-1X2ZSXSR3W328-1234567890.us-west-2.elb.amazonaws.com
Stack ARN:
arn:aws:cloudformation:us-west-2:1234567890:stack/SippApiStack/3841b3e0-b271-11ea-aae2-065639e88e5c
. . .
edit: Luckily everything looks fine in Gitlab’s CI/CD pipeline.
Issue Analytics
- State:
- Created 3 years ago
- Reactions:2
- Comments:6 (3 by maintainers)
Top Results From Across the Web
Troubleshooting common AWS CDK issues
This topic describes how to troubleshoot the following issues with the AWS CDK. After updating the AWS CDK, the AWS CDK Toolkit (CLI)...
Read more >@seed-run/aws-cdk - npm
If a resource fails to be created or updated, the deployment will roll back before the CLI returns. All changes made up to...
Read more >Datadog CDK Construct
Use this Datadog CDK Construct Library to deploy serverless applications using AWS CDK . This CDK library automatically configures ingestion of metrics, ...
Read more >AWS CDK CLI | Docs | Buddy: The DevOps Automation Platform
Get Started. Sign up for free and deploy your project in less than 10 minutes. GitHub ...
Read more >Introduction to CDK - Activate Early stage path
The AWS Cloud Development Kit (CDK) is a new software development framework from ... In this phase the AWS CDK CLI takes the...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Agreed. In addition to providing an option for people to choose, I think non-interactive terminals (like CI) should default to the other output style. Most (all?) CI platforms set the
CI
environment variable, so maybe when theCI
variable is set (or another non-interactive terminal is detected), CDK automatically reverts to the old behavior?_Originally posted by @slotnick in https://github.com/aws/aws-cdk/pull/8165#issuecomment-647998179_
Encountering exactly the same here. Is there an option to disable this mode and revert to the previous display? It’s also useful to understand what happened during the build, which is lost with this update. My working model is to kick off a build, then check back after awhile to see what happened. This change makes that very difficult.