Add ingress feature to controller (#5)

Co-authored-by: Maycon Santos <mlsmaycon@gmail.com>
This commit is contained in:
M. Essam
2025-03-06 09:57:45 +01:00
committed by GitHub
co-authored by Maycon Santos
parent cea60745d2
commit 166091b8e0
54 changed files with 5992 additions and 189 deletions
@@ -0,0 +1,17 @@
package controller
import (
. "github.com/onsi/ginkgo/v2"
)
var _ = Describe("Service Controller", func() {
Context("When reconciling a resource", func() {
It("should successfully reconcile the resource", func() {
Skip("Not implemented yet")
// TODO(user): Add more specific assertions depending on your controller's reconciliation logic.
// Example: If you expect a certain status condition after reconciliation, verify it here.
})
})
})