Skip to content

Commit

Permalink
Update test
Browse files Browse the repository at this point in the history
  • Loading branch information
dviejokfs committed Dec 29, 2023
1 parent 54a6a24 commit 440f920
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Create k8s Kind Cluster
uses: helm/[email protected]
- name: Install operator
run: |
run: |
go install sigs.k8s.io/controller-tools/cmd/[email protected]
make generate manifests install
Expand Down
6 changes: 3 additions & 3 deletions controllers/tests/suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ var _ = BeforeSuite(func(done Done) {
ClientSet: ClientSet,
ChartPath: caChartPath,
}
err = caReconciler.SetupWithManager(k8sManager)
err = caReconciler.SetupWithManager(k8sManager, 10)
Expect(err).ToNot(HaveOccurred())
peerChartPath, err := filepath.Abs("../../charts/hlf-peer")
Expect(err).ToNot(HaveOccurred())
Expand All @@ -98,7 +98,7 @@ var _ = BeforeSuite(func(done Done) {
Config: RestConfig,
ChartPath: peerChartPath,
}
err = peerReconciler.SetupWithManager(k8sManager)
err = peerReconciler.SetupWithManager(k8sManager, 10)

Expect(err).ToNot(HaveOccurred())
ordChartPath, err := filepath.Abs("../../charts/hlf-ord")
Expand All @@ -122,7 +122,7 @@ var _ = BeforeSuite(func(done Done) {
ChartPath: ordNodeChartPath,
Config: RestConfig,
}
err = ordNodeReconciler.SetupWithManager(k8sManager)
err = ordNodeReconciler.SetupWithManager(k8sManager, 10)
Expect(err).ToNot(HaveOccurred())

go func() {
Expand Down

0 comments on commit 440f920

Please sign in to comment.