File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change 77 "context"
88 "fmt"
99
10- "sigs.k8s.io/controller-runtime/pkg/client"
1110 goClient "sigs.k8s.io/controller-runtime/pkg/client"
1211
1312 metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
@@ -38,11 +37,11 @@ const (
3837)
3938
4039func getNetConfig (
41- _ client .Client ,
40+ _ goClient .Client ,
4241 obj metav1.Object ,
4342) (* NetConfig , error ) {
4443 // check if NetConfig is available
45- opts := & client .ListOptions {
44+ opts := & goClient .ListOptions {
4645 Namespace : obj .GetNamespace (),
4746 }
4847
@@ -62,11 +61,11 @@ func getNetConfig(
6261}
6362
6463func getIPSets (
65- _ client .Client ,
64+ _ goClient .Client ,
6665 obj metav1.Object ,
6766) (* IPSetList , error ) {
6867 // check if IPSet is available
69- opts := & client .ListOptions {
68+ opts := & goClient .ListOptions {
7069 Namespace : obj .GetNamespace (),
7170 }
7271
You can’t perform that action at this time.
0 commit comments