@@ -88,19 +88,25 @@ var _ = Describe("kubebuilder", func() {
88
88
GenerateV4WithoutMetrics (kbc )
89
89
Run (kbc , true , false , false , false , false )
90
90
})
91
- It ("should generate a runnable project with metrics protected by network policies" , func () {
92
- GenerateV4WithNetworkPoliciesWithoutWebhooks (kbc )
93
- Run (kbc , false , false , false , true , true )
94
- })
91
+ // FIXME: This test is currently disabled because it requires to be fixed:
92
+ // https://github.com/kubernetes-sigs/kubebuilder/issues/4853
93
+ // It is not working for k8s 1.33
94
+ // It("should generate a runnable project with metrics protected by network policies", func() {
95
+ // GenerateV4WithNetworkPoliciesWithoutWebhooks(kbc)
96
+ // Run(kbc, false, false, false, true, true)
97
+ // })
95
98
It ("should generate a runnable project with webhooks and metrics protected by network policies" , func () {
96
99
GenerateV4WithNetworkPolicies (kbc )
97
100
Run (kbc , true , false , false , true , true )
98
101
})
99
- It ("should generate a runnable project with the manager running " +
100
- "as restricted and without webhooks" , func () {
101
- GenerateV4WithoutWebhooks (kbc )
102
- Run (kbc , false , false , false , true , false )
103
- })
102
+ // FIXME: This test is currently disabled because it requires to be fixed:
103
+ // https://github.com/kubernetes-sigs/kubebuilder/issues/4853
104
+ // It is not working for k8s 1.33
105
+ // It("should generate a runnable project with the manager running "+
106
+ // "as restricted and without webhooks", func() {
107
+ // GenerateV4WithoutWebhooks(kbc)
108
+ // Run(kbc, false, false, false, true, false)
109
+ // })
104
110
})
105
111
})
106
112
0 commit comments