diff --git a/docs/api/v2beta2/helm.md b/docs/api/v2beta2/helm.md index 840a1ca2d..4f3a7ac53 100644 --- a/docs/api/v2beta2/helm.md +++ b/docs/api/v2beta2/helm.md @@ -534,10 +534,6 @@ handle differences between the manifest in the Helm storage and the resources currently existing in the cluster.

Filter

-

-(Appears on: -Test) -

Filter holds the configuration for individual Helm test filters.

@@ -2267,9 +2263,7 @@ Kubernetes meta/v1.Time testHooks
- -TestHookStatus - +map[string]*github.com/fluxcd/helm-controller/api/v2beta2.TestHookStatus @@ -2283,7 +2277,7 @@ run by the controller.

Snapshots -([]*./api/v2beta2.Snapshot alias)

+([]*github.com/fluxcd/helm-controller/api/v2beta2.Snapshot alias)

(Appears on: HelmReleaseStatus) @@ -2352,8 +2346,8 @@ actions in ‘Install.IgnoreTestFailures’ and ‘Upgrade.IgnoreTes filters
- -Filter + +[]github.com/fluxcd/helm-controller/api/v2beta2.Filter @@ -2367,10 +2361,6 @@ Filter

TestHookStatus

-

-(Appears on: -Snapshot) -

TestHookStatus holds the status information for a test hook as observed to be run by the controller.

diff --git a/internal/controller/helmrelease_controller_test.go b/internal/controller/helmrelease_controller_test.go index e8d19444c..3fb39ace9 100644 --- a/internal/controller/helmrelease_controller_test.go +++ b/internal/controller/helmrelease_controller_test.go @@ -136,7 +136,7 @@ func TestHelmReleaseReconciler_reconcileRelease(t *testing.T) { WithStatusSubresource(&v2.HelmRelease{}). WithObjects(obj). Build(), - EventRecorder: record.NewFakeRecorder(32), + EventRecorder: record.NewFakeRecorder(32), } _, err := r.reconcileRelease(context.TODO(), patch.NewSerialPatcher(obj, r.Client), obj) @@ -167,7 +167,7 @@ func TestHelmReleaseReconciler_reconcileRelease(t *testing.T) { WithStatusSubresource(&v2.HelmRelease{}). WithObjects(obj). Build(), - EventRecorder: record.NewFakeRecorder(32), + EventRecorder: record.NewFakeRecorder(32), } res, err := r.reconcileRelease(context.TODO(), patch.NewSerialPatcher(obj, r.Client), obj) @@ -385,7 +385,7 @@ func TestHelmReleaseReconciler_reconcileRelease(t *testing.T) { WithStatusSubresource(&v2.HelmRelease{}). WithObjects(chart, obj). Build(), - EventRecorder: record.NewFakeRecorder(32), + EventRecorder: record.NewFakeRecorder(32), } _, err := r.reconcileRelease(context.TODO(), patch.NewSerialPatcher(obj, r.Client), obj)