first commit
This commit is contained in:
10
internal/controller/common.go
Normal file
10
internal/controller/common.go
Normal file
@@ -0,0 +1,10 @@
|
||||
package controller
|
||||
|
||||
import "sigs.k8s.io/controller-runtime/pkg/client"
|
||||
|
||||
func BuildObjectKey(namespace string, name string) client.ObjectKey {
|
||||
return client.ObjectKey{
|
||||
Namespace: namespace,
|
||||
Name: name,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user