f.BoolVar(&client.VerifyLater,"prov",false,"fetch the provenance file, but don't perform verification")
f.StringVar(&client.UntarDir,"untardir",".","if untar is specified, this flag specifies the name of the directory into which the chart is expanded")
f.StringVarP(&client.DestDir,"destination","d",".","location to write the chart. If this and untardir are specified, untardir is appended to this")
f.Int64Var(&client.MaxChartSize,"max-chart-size",settings.MaxChartSize,"maximum size in bytes for a decompressed chart (default is 100mb)")
f.Int64Var(&client.MaxChartFileSize,"max-file-size",settings.MaxChartFileSize,"maximum size in bytes for a single file in a chart (default is 5mb)")
f.Var(cli.NewQuantityBytesValue(&client.MaxChartSize),"max-chart-size","maximum size for a decompressed chart (e.g., 100Mi, 1Gi; default is 100Mi)")
f.Var(cli.NewQuantityBytesValue(&client.MaxChartFileSize),"max-file-size","maximum size for a single file in a chart (e.g., 5Mi, 10Mi; default is 5Mi)")
f.BoolVar(&client.DependencyUpdate,"dependency-update",false,"update dependencies if they are missing before installing the chart")
f.BoolVar(&client.EnableDNS,"enable-dns",false,"enable DNS lookups when rendering templates")
f.BoolVar(&client.TakeOwnership,"take-ownership",false,"if set, upgrade will ignore the check for helm annotations and take ownership of the existing resources")
f.Int64Var(&client.MaxChartSize,"max-chart-size",settings.MaxChartSize,"maximum size in bytes for a decompressed chart (default is 100mb)")
f.Int64Var(&client.MaxChartFileSize,"max-file-size",settings.MaxChartFileSize,"maximum size in bytes for a single file in a chart (default is 5mb)")
f.Var(cli.NewQuantityBytesValue(&client.MaxChartSize),"max-chart-size","maximum size for a decompressed chart (e.g., 100Mi, 1Gi; default is 100Mi)")
f.Var(cli.NewQuantityBytesValue(&client.MaxChartFileSize),"max-file-size","maximum size for a single file in a chart (e.g., 5Mi, 10Mi; default is 5Mi)")