first commit
Some checks failed
E2E Tests / Run on Ubuntu (push) Failing after 1m26s
Lint / Run on Ubuntu (push) Failing after 4m54s
Tests / Run on Ubuntu (push) Successful in 5m8s

This commit is contained in:
Chris Richardson
2025-05-09 08:22:45 -04:00
commit 9d4d9b385b
55 changed files with 3252 additions and 0 deletions

View 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,
}
}