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: README.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -168,6 +168,7 @@ Flags:
168
168
--reset-then-reuse-values reset the values to the ones built into the chart, apply the last release's values and merge in any new values. If '--reset-values' or '--reuse-values' is specified, this is ignored
169
169
--reset-values reset the values to the ones built into the chart and merge in any new values
170
170
--reuse-values reuse the last release's values and merge in any new values. If '--reset-values' is specified, this is ignored
171
+
--revision int revision of the release to use as the diff baseline instead of the newest one
171
172
--server-side string must be "true", "false" or "auto". Object updates run in the server instead of the client ("auto" defaults the value from the previous chart release's method) (default "auto")
172
173
--set stringArray set values on the command line (can specify multiple or separate values with commas: key1=val1,key2=val2)
173
174
--set-file stringArray set values from respective files specified via the command line (can specify multiple or separate values with commas: key1=path1,key2=path2)
@@ -349,6 +350,7 @@ Flags:
349
350
--reset-then-reuse-values reset the values to the ones built into the chart, apply the last release's values and merge in any new values. If '--reset-values' or '--reuse-values' is specified, this is ignored
350
351
--reset-values reset the values to the ones built into the chart and merge in any new values
351
352
--reuse-values reuse the last release's values and merge in any new values. If '--reset-values' is specified, this is ignored
353
+
--revision int revision of the release to use as the diff baseline instead of the newest one
352
354
--server-side string must be "true", "false" or "auto". Object updates run in the server instead of the client ("auto" defaults the value from the previous chart release's method) (default "auto")
353
355
--set stringArray set values on the command line (can specify multiple or separate values with commas: key1=val1,key2=val2)
354
356
--set-file stringArray set values from respective files specified via the command line (can specify multiple or separate values with commas: key1=path1,key2=path2)
f.BoolVar(&diff.insecureSkipTLSVerify, "insecure-skip-tls-verify", false, "skip tls certificate checks for the chart download")
260
280
f.BoolVar(&diff.normalizeManifests, "normalize-manifests", false, "normalize manifests before running diff to exclude style differences from the output")
261
281
f.BoolVar(&diff.takeOwnership, "take-ownership", false, "if set, upgrade will ignore the check for helm annotations and take ownership of the existing resources")
282
+
f.IntVar(&diff.revision, "revision", 0, "revision of the release to use as the diff baseline instead of the newest one")
262
283
f.StringVar(&diff.serverSide, "server-side", serverSideAuto, `must be "true", "false" or "auto". Object updates run in the server instead of the client ("auto" defaults the value from the previous chart release's method)`)
0 commit comments