fix: regenerate manifests

Signed-off-by: Robin Breathe <robin@isometry.net>
This commit is contained in:
Robin Breathe 2024-05-01 12:27:41 +02:00
parent b2702de944
commit 6d96ae1da4
No known key found for this signature in database
3 changed files with 26 additions and 9 deletions

View File

@ -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. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *HelmChartStatus) DeepCopyInto(out *HelmChartStatus) { func (in *HelmChartStatus) DeepCopyInto(out *HelmChartStatus) {
*out = *in *out = *in
if in.ObservedValuesFiles != nil {
in, out := &in.ObservedValuesFiles, &out.ObservedValuesFiles
*out = make([]string, len(*in))
copy(*out, *in)
}
if in.Conditions != nil { if in.Conditions != nil {
in, out := &in.Conditions, &out.Conditions in, out := &in.Conditions, &out.Conditions
*out = make([]v1.Condition, len(*in)) *out = make([]v1.Condition, len(*in))

View File

@ -93,11 +93,6 @@ spec:
description: The name or path the Helm chart is available at in the description: The name or path the Helm chart is available at in the
SourceRef. SourceRef.
type: string type: string
ignoreMissingValuesFiles:
description: |-
IgnoreMissingValuesFiles controls whether to silently ignore missing values
files rather than failing.
type: boolean
interval: interval:
description: The interval at which to check the Source for updates. description: The interval at which to check the Source for updates.
type: string type: string
@ -648,6 +643,11 @@ spec:
ObservedSourceArtifactRevision is the last observed Artifact.Revision ObservedSourceArtifactRevision is the last observed Artifact.Revision
of the HelmChartSpec.SourceRef. of the HelmChartSpec.SourceRef.
type: string type: string
observedValuesFiles:
description: ObservedValuesFiles are the last observed value files.
items:
type: string
type: array
url: url:
description: |- description: |-
URL is the dynamic fetch link for the latest Artifact. URL is the dynamic fetch link for the latest Artifact.

View File

@ -667,8 +667,8 @@ bool
</td> </td>
<td> <td>
<em>(Optional)</em> <em>(Optional)</em>
<p>Whether to silently ignore missing values files rather than failing. <p>IgnoreMissingValuesFiles controls whether to silently ignore missing values
</p> files rather than failing.</p>
</td> </td>
</tr> </tr>
<tr> <tr>
@ -2349,8 +2349,8 @@ bool
</td> </td>
<td> <td>
<em>(Optional)</em> <em>(Optional)</em>
<p>Whether to silently ignore missing values files rather than failing. <p>IgnoreMissingValuesFiles controls whether to silently ignore missing values
</p> files rather than failing.</p>
</td> </td>
</tr> </tr>
<tr> <tr>
@ -2462,6 +2462,18 @@ resolved chart reference.</p>
</tr> </tr>
<tr> <tr>
<td> <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> <code>conditions</code><br>
<em> <em>
<a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Condition"> <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Condition">