We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfb41b5 commit 34d527eCopy full SHA for 34d527e
pkg/config/runtime_config.go
@@ -101,7 +101,6 @@ func BuildCacheOptions() cache.Options {
101
},
102
&corev1.Namespace{}: {},
103
&networkingv1.NetworkPolicy{}: {},
104
- &corev1.Endpoints{}: {},
105
&v1alpha1.PolicyEndpoint{}: {},
106
107
}
pkg/config/runtime_config_test.go
@@ -10,5 +10,5 @@ func Test_buildCacheOptions(t *testing.T) {
10
cacheOptions := BuildCacheOptions()
11
g := NewWithT(t)
12
g.Expect(cacheOptions.ReaderFailOnMissingInformer).To(BeTrue())
13
- g.Expect(cacheOptions.ByObject).To(HaveLen(6))
+ g.Expect(cacheOptions.ByObject).To(HaveLen(5))
14
0 commit comments