asD
Some checks failed
Tests / Run on Ubuntu (push) Failing after 55s
E2E Tests / Run on Ubuntu (push) Failing after 1m15s
Lint / Run on Ubuntu (push) Has been cancelled

This commit is contained in:
Chris Richardson
2025-05-13 08:01:53 -04:00
parent b03514b861
commit 60f4f65407
4 changed files with 120 additions and 10 deletions

View File

@@ -0,0 +1,16 @@
package controller
import (
"context"
locustCluster "git.lilpenguins.com/crichardson/locust-operator/api/v1alpha1"
"github.com/go-logr/logr"
)
func (r *LocustClusterReconciler) CreateLeaderJob(log logr.Logger, locustCluster *locustCluster.LocustCluster, ctx context.Context) error {
return nil
}
func (r *LocustClusterReconciler) CreateLeaderService(log logr.Logger, locustCluster *locustCluster.LocustCluster,
ctx context.Context) error {
return nil
}