You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/cli/cmds/synth.ts
+6-4Lines changed: 6 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,8 @@ class Command implements yargs.CommandModule {
32
32
.option('validation-reports-output-file',{required: false,desc: 'File to write a JSON representation of the validation reports to'})
33
33
.option('format',{required: false,desc: 'Synthesis format for Kubernetes manifests. The default synthesis format is plain kubernetes manifests.',type: 'string'})
34
34
.option('chart-api-version',{required: false,desc: 'Chart API version of helm chart. The default value would be \'v2\' api version when synthesis format is helm. There is no default set when synthesis format is plain.',type: 'string'})
35
-
.option('chart-version',{required: false,desc: 'Chart version of helm chart. This is required if synthesis format is helm.'});
35
+
.option('chart-version',{required: false,desc: 'Chart version of helm chart. This is required if synthesis format is helm.'})
36
+
.option('chart-name',{required: false,desc: 'Chart name of helm chart. Use when synthesis format is helm. The default is the applications base directory name.'});
36
37
37
38
publicasynchandler(argv: any){
38
39
@@ -45,6 +46,7 @@ class Command implements yargs.CommandModule {
0 commit comments