new attempt

This commit is contained in:
Bastian Schnorbus
2025-05-06 23:03:51 +02:00
parent 7783d14826
commit cbefdfba7b
28 changed files with 80 additions and 446 deletions

View File

@@ -27,6 +27,6 @@ import (
// Run e2e tests using the Ginkgo runner.
func TestE2E(t *testing.T) {
RegisterFailHandler(Fail)
_, _ = fmt.Fprintf(GinkgoWriter, "Starting tdset-operator suite\n")
_, _ = fmt.Fprintf(GinkgoWriter, "Starting k8s-operator-playground suite\n")
RunSpecs(t, "e2e suite")
}

View File

@@ -27,7 +27,7 @@ import (
"github.com/baschno/tdset-operator/test/utils"
)
const namespace = "tdset-operator-system"
const namespace = "k8s-operator-playground-system"
var _ = Describe("controller", Ordered, func() {
BeforeAll(func() {
@@ -60,7 +60,7 @@ var _ = Describe("controller", Ordered, func() {
var err error
// projectimage stores the name of the image used in the example
var projectimage = "example.com/tdset-operator:v0.0.1"
var projectimage = "example.com/k8s-operator-playground:v0.0.1"
By("building the manager(Operator) image")
cmd := exec.Command("make", "docker-build", fmt.Sprintf("IMG=%s", projectimage))