From 61429d1daec993cb95af038b665c0ee48970ffa2 Mon Sep 17 00:00:00 2001 From: Sander Tervoert <32864332+sandert-k8s@users.noreply.github.com> Date: Tue, 10 Feb 2026 08:54:08 +0100 Subject: [PATCH] fix(docs): update home in chart.yaml (#1864) * fix(docs): update home in chart.yaml Signed-off-by: sandert-k8s * fix: linter Signed-off-by: sandert-k8s --------- Signed-off-by: sandert-k8s --- charts/capsule/Chart.yaml | 4 ++-- pkg/runtime/indexers/tenant/namespaces.go | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/charts/capsule/Chart.yaml b/charts/capsule/Chart.yaml index f65bb090..0a80e61e 100644 --- a/charts/capsule/Chart.yaml +++ b/charts/capsule/Chart.yaml @@ -1,8 +1,8 @@ apiVersion: v2 type: application description: A Helm chart to deploy the Capsule Operator for easily implementing, - managing, and maintaining mutitenancy and access control in Kubernetes. -home: https://github.com/projectcapsule/capsule + managing, and maintaining multitenancy and access control in Kubernetes. +home: https://projectcapsule.dev/ icon: https://github.com/projectcapsule/capsule/raw/main/assets/logo/capsule_small.png dependencies: - name: capsule-proxy diff --git a/pkg/runtime/indexers/tenant/namespaces.go b/pkg/runtime/indexers/tenant/namespaces.go index f5afda0f..9da775f9 100644 --- a/pkg/runtime/indexers/tenant/namespaces.go +++ b/pkg/runtime/indexers/tenant/namespaces.go @@ -21,7 +21,6 @@ func (o NamespacesReference) Field() string { return ".status.namespaces" } -//nolint:forcetypeassert func (o NamespacesReference) Func() client.IndexerFunc { return func(object client.Object) []string { t, ok := object.(*capsulev1beta2.Tenant)