forked from kcp-dev/kcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request kcp-dev#1372 from ncdc/ddsif
Various dynamic discovery shared informer factory updates
- Loading branch information
Showing
6 changed files
with
214 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
/* | ||
Copyright 2022 The KCP Authors. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package indexers | ||
|
||
import ( | ||
"github.com/kcp-dev/logicalcluster" | ||
|
||
"k8s.io/apimachinery/pkg/api/meta" | ||
"k8s.io/client-go/tools/cache" | ||
"k8s.io/client-go/tools/clusters" | ||
) | ||
|
||
const ( | ||
// ByLogicalCluster is the name for the index that indexes by an object's logical cluster. | ||
ByLogicalCluster = "kcp-global-byLogicalCluster" | ||
// ByLogicalClusterAndNamespace is the name for the index that indexes by an object's logical cluster and namespace. | ||
ByLogicalClusterAndNamespace = "kcp-global-byLogicalClusterAndNamespace" | ||
) | ||
|
||
// ClusterScoped returns cache.Indexers appropriate for cluster-scoped resources. | ||
func ClusterScoped() cache.Indexers { | ||
return cache.Indexers{ | ||
ByLogicalCluster: IndexByLogicalCluster, | ||
} | ||
} | ||
|
||
// NamespaceScoped returns cache.Indexers appropriate for namespace-scoped resources. | ||
func NamespaceScoped() cache.Indexers { | ||
return cache.Indexers{ | ||
ByLogicalCluster: IndexByLogicalCluster, | ||
ByLogicalClusterAndNamespace: IndexByLogicalClusterAndNamespace, | ||
} | ||
} | ||
|
||
// IndexByLogicalCluster is an index function that indexes by an object's logical cluster. | ||
func IndexByLogicalCluster(obj interface{}) ([]string, error) { | ||
a, err := meta.Accessor(obj) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
return []string{logicalcluster.From(a).String()}, nil | ||
} | ||
|
||
// IndexByLogicalClusterAndNamespace is an index function that indexes by an object's logical cluster and namespace. | ||
func IndexByLogicalClusterAndNamespace(obj interface{}) ([]string, error) { | ||
a, err := meta.Accessor(obj) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
return []string{clusters.ToClusterAwareKey(logicalcluster.From(a), a.GetNamespace())}, nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.