Files
locust-operator/internal/controller/common.go
Chris Richardson 9d4d9b385b
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
first commit
2025-05-09 08:22:45 -04:00

11 lines
216 B
Go

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