f.BoolVar(&client.EnableDNS,"enable-dns",false,"enable DNS lookups when rendering templates")
f.BoolVar(&client.HideNotes,"hide-notes",false,"if set, do not show notes in install output. Does not affect presence in chart metadata")
f.BoolVar(&client.TakeOwnership,"take-ownership",false,"if set, install will ignore the check for helm annotations and take ownership of the existing resources")
f.BoolVar(&client.ThreeWayMergeForCustomResources,"three-way-merge-for-custom-resources",false,"also considers the state of custom resources and custom resource definitions in the cluster when adopting resources")
f.BoolVar(&client.WaitForJobs,"wait-for-jobs",false,"if set and --wait enabled, will wait until all Jobs have been completed before marking the release as successful. It will wait for as long as --timeout")
f.BoolVar(&client.CleanupOnFail,"cleanup-on-fail",false,"allow deletion of new resources created in this rollback when rollback fails")
f.IntVar(&client.MaxHistory,"history-max",settings.MaxHistory,"limit the maximum number of revisions saved per release. Use 0 for no limit")
f.BoolVar(&client.ThreeWayMergeForCustomResources,"three-way-merge-for-custom-resources",false,"also considers the state of custom resources and custom resource definitions in the cluster when upgrading (or adopting) resources")
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.BoolVar(&client.ThreeWayMergeForCustomResources,"three-way-merge-for-custom-resources",false,"also considers the state of custom resources in the cluster when upgrading (or adopting) resources")
fs.Float32Var(&s.QPS,"qps",s.QPS,"queries per second used when communicating with the Kubernetes API, not including bursting")
fs.BoolVar(&s.ThreeWayMergeForUnstructured,"three-way-merge-for-unstructured",s.ThreeWayMergeForUnstructured,"use a three way merge patch for unstructured objects (custom resources, custom resource definitions, etc.)")