-
Notifications
You must be signed in to change notification settings - Fork 296
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
[Helm Synthesis] ERROR: synthesis failed, app expected to create "dist/templates" #1560
Comments
I think const app = new App({
outdir: 'dist/my-helm',
}); doesn't work. Try Related cdk8s-team/cdk8s-cli#210 |
@shinebayar-g It does work without helm synthesis
|
@vumdao The issue @shinebayar-g linked to explains the problem. Here is what happens:
The reason it works with regular synthesis is just because the There is no real way around it, because the CLI must place the manifests inside Are you able to workaround the issue by using |
@iliapolo Using option |
What kind of separation are you looking for? Based on what? Are these separate charts or resources inside the same chart? |
@iliapolo my use case is synth-ing a helm chart per environment ( qa, staging etc) from a single cdk8s app. This doesn't work as all chart instances are part of the same app and get rendered as a single helm chart. It seems that unlike the cdk ( using the Stage concept ), a single cdk8s App can only emit a single "assembly". IMO porting / reusing the stage concept to the cdk8s would address this and similar concerns. |
Description of the bug:
Reproduction Steps:
Environment:
The text was updated successfully, but these errors were encountered: