fix: regenerate manifests
Signed-off-by: Robin Breathe <robin@isometry.net>
This commit is contained in:
parent
b2702de944
commit
6d96ae1da4
|
|
@ -484,6 +484,11 @@ func (in *HelmChartSpec) DeepCopy() *HelmChartSpec {
|
|||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *HelmChartStatus) DeepCopyInto(out *HelmChartStatus) {
|
||||
*out = *in
|
||||
if in.ObservedValuesFiles != nil {
|
||||
in, out := &in.ObservedValuesFiles, &out.ObservedValuesFiles
|
||||
*out = make([]string, len(*in))
|
||||
copy(*out, *in)
|
||||
}
|
||||
if in.Conditions != nil {
|
||||
in, out := &in.Conditions, &out.Conditions
|
||||
*out = make([]v1.Condition, len(*in))
|
||||
|
|
|
|||
|
|
@ -93,11 +93,6 @@ spec:
|
|||
description: The name or path the Helm chart is available at in the
|
||||
SourceRef.
|
||||
type: string
|
||||
ignoreMissingValuesFiles:
|
||||
description: |-
|
||||
IgnoreMissingValuesFiles controls whether to silently ignore missing values
|
||||
files rather than failing.
|
||||
type: boolean
|
||||
interval:
|
||||
description: The interval at which to check the Source for updates.
|
||||
type: string
|
||||
|
|
@ -648,6 +643,11 @@ spec:
|
|||
ObservedSourceArtifactRevision is the last observed Artifact.Revision
|
||||
of the HelmChartSpec.SourceRef.
|
||||
type: string
|
||||
observedValuesFiles:
|
||||
description: ObservedValuesFiles are the last observed value files.
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
url:
|
||||
description: |-
|
||||
URL is the dynamic fetch link for the latest Artifact.
|
||||
|
|
|
|||
|
|
@ -667,8 +667,8 @@ bool
|
|||
</td>
|
||||
<td>
|
||||
<em>(Optional)</em>
|
||||
<p>Whether to silently ignore missing values files rather than failing.
|
||||
</p>
|
||||
<p>IgnoreMissingValuesFiles controls whether to silently ignore missing values
|
||||
files rather than failing.</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
|
@ -2349,8 +2349,8 @@ bool
|
|||
</td>
|
||||
<td>
|
||||
<em>(Optional)</em>
|
||||
<p>Whether to silently ignore missing values files rather than failing.
|
||||
</p>
|
||||
<p>IgnoreMissingValuesFiles controls whether to silently ignore missing values
|
||||
files rather than failing.</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
|
@ -2462,6 +2462,18 @@ resolved chart reference.</p>
|
|||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<code>observedValuesFiles</code><br>
|
||||
<em>
|
||||
[]string
|
||||
</em>
|
||||
</td>
|
||||
<td>
|
||||
<em>(Optional)</em>
|
||||
<p>ObservedValuesFiles are the last observed value files.</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<code>conditions</code><br>
|
||||
<em>
|
||||
<a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Condition">
|
||||
|
|
|
|||
Loading…
Reference in New Issue