We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 599b418 commit f25bcbeCopy full SHA for f25bcbe
controllers/scripts_test.go
@@ -6,6 +6,7 @@ import (
6
. "github.com/onsi/ginkgo/v2"
7
. "github.com/onsi/gomega"
8
v1 "k8s.io/api/core/v1"
9
+ "k8s.io/apimachinery/pkg/runtime"
10
11
"github.com/redhat-et/ipfs-operator/api/v1alpha1"
12
"github.com/redhat-et/ipfs-operator/controllers"
@@ -18,7 +19,9 @@ var _ = Describe("Scripts", func() {
18
19
var ctx context.Context
20
BeforeEach(func() {
21
ctx = context.TODO()
- ipfsReconciler = &controllers.IpfsReconciler{}
22
+ ipfsReconciler = &controllers.IpfsReconciler{
23
+ Scheme: &runtime.Scheme{},
24
+ }
25
ipfsConfigMap = &v1.ConfigMap{}
26
ipfs = &v1alpha1.Ipfs{}
27
})
0 commit comments