mirror of
https://github.com/helm/helm.git
synced 2026-05-28 04:35:48 -04:00
fix(dependency): clarify untar archive cleanup behavior
Signed-off-by: maheshrijal <62394512+maheshrijal@users.noreply.github.com>
This commit is contained in:
parent
37482853ae
commit
839b699f7b
1 changed files with 1 additions and 1 deletions
|
|
@ -134,7 +134,7 @@ func addDependencySubcommandFlags(f *pflag.FlagSet, client *action.Dependency, w
|
|||
f.BoolVar(&client.PlainHTTP, "plain-http", false, "use insecure HTTP connections for the chart download")
|
||||
f.StringVar(&client.CaFile, "ca-file", "", "verify certificates of HTTPS-enabled servers using this CA bundle")
|
||||
if withUntar {
|
||||
f.BoolVar(&client.Untar, "untar", false, "if set to true, will untar the dependency charts after downloading them and remove the chart archives")
|
||||
f.BoolVar(&client.Untar, "untar", false, "if set to true, will untar dependency charts after downloading them; with the default --untardir (charts/), chart archives are removed after extraction")
|
||||
f.StringVar(&client.UntarDir, "untardir", "charts", "if untar is specified, this flag specifies the directory (relative to chart root) into which dependencies are expanded")
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue