You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// BucketLister is a *(github.com/aws/aws-sdk-go/service/s3).Client compatible interface that provides just the ListBuckets cross-section of functionality. It can also be implemented for unit tests
8
+
typeBucketListerinterface {
9
+
// ListBuckets lists all the buckets in the object storage system
Copy file name to clipboardExpand all lines: pkg/healthsrv/namespace_lister.go
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,8 @@ import (
6
6
"k8s.io/kubernetes/pkg/labels"
7
7
)
8
8
9
+
// NamespaceLister is an (*k8s.io/kubernetes/pkg/client/unversioned).Client compatible interface that provides just the ListBuckets cross-section of functionality. It can also be implemented for unit tests.
9
10
typeNamespaceListerinterface {
11
+
// List lists all namespaces that are selected by the given label and field selectors
0 commit comments