Commit 1307041 1 parent 183d816 commit 1307041 Copy full SHA for 1307041
File tree 3 files changed +31
-0
lines changed
3 files changed +31
-0
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,11 @@ import (
25
25
// Snapshot captures a point-in-time copy of the status information for a Helm release,
26
26
// as managed by the controller.
27
27
type Snapshot struct {
28
+ // APIVersion is the API version of the Snapshot.
29
+ // Provisional: when the calculation method of the Digest field is changed,
30
+ // this field will be used to distinguish between the old and new methods.
31
+ // +optional
32
+ APIVersion string `json:"apiVersion,omitempty"`
28
33
// Digest is the checksum of the release object in storage.
29
34
// It has the format of `<algo>:<checksum>`.
30
35
// +required
Original file line number Diff line number Diff line change @@ -1800,6 +1800,12 @@ spec:
1800
1800
description : Current holds the latest observed Snapshot for the current
1801
1801
release.
1802
1802
properties :
1803
+ apiVersion :
1804
+ description : ' APIVersion is the API version of the Snapshot. Provisional:
1805
+ when the calculation method of the Digest field is changed,
1806
+ this field will be used to distinguish between the old and new
1807
+ methods.'
1808
+ type : string
1803
1809
chartName :
1804
1810
description : ChartName is the chart name of the release object
1805
1811
in storage.
@@ -1921,6 +1927,12 @@ spec:
1921
1927
description : Previous holds the latest observed Snapshot for the previous
1922
1928
(succesful) release.
1923
1929
properties :
1930
+ apiVersion :
1931
+ description : ' APIVersion is the API version of the Snapshot. Provisional:
1932
+ when the calculation method of the Digest field is changed,
1933
+ this field will be used to distinguish between the old and new
1934
+ methods.'
1935
+ type : string
1924
1936
chartName :
1925
1937
description : ChartName is the chart name of the release object
1926
1938
in storage.
Original file line number Diff line number Diff line change @@ -1914,6 +1914,20 @@ as managed by the controller.</p>
1914
1914
<tbody >
1915
1915
<tr >
1916
1916
<td >
1917
+ <code >apiVersion</code ><br >
1918
+ <em >
1919
+ string
1920
+ </em >
1921
+ </td >
1922
+ <td >
1923
+ <em >(Optional)</em >
1924
+ <p >APIVersion is the API version of the Snapshot.
1925
+ Provisional: when the calculation method of the Digest field is changed,
1926
+ this field will be used to distinguish between the old and new methods.</p >
1927
+ </td >
1928
+ </tr >
1929
+ <tr >
1930
+ <td >
1917
1931
<code >digest</code ><br >
1918
1932
<em >
1919
1933
string
You can’t perform that action at this time.
0 commit comments